isoxml
Version:
JavaScript library to parse and generate ISOXML (ISO11783-10) files
61 lines (60 loc) • 2.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CodedComment = exports.CodedCommentCodedCommentScopeEnum = void 0;
const constants_1 = require("./constants");
const classRegistry_1 = require("../classRegistry");
const utils_1 = require("../utils");
var CodedCommentCodedCommentScopeEnum;
(function (CodedCommentCodedCommentScopeEnum) {
CodedCommentCodedCommentScopeEnum["Point"] = "1";
CodedCommentCodedCommentScopeEnum["Global"] = "2";
CodedCommentCodedCommentScopeEnum["Continuous"] = "3";
})(CodedCommentCodedCommentScopeEnum || (exports.CodedCommentCodedCommentScopeEnum = CodedCommentCodedCommentScopeEnum = {}));
const ATTRIBUTES = {
A: {
name: 'CodedCommentId',
type: 'xs:ID',
isPrimaryId: true,
isOptional: false,
isOnlyV4: false,
},
B: {
name: 'CodedCommentDesignator',
type: 'xs:string',
isPrimaryId: false,
isOptional: false,
isOnlyV4: false,
},
C: {
name: 'CodedCommentScope',
type: 'xs:NMTOKEN',
isPrimaryId: false,
isOptional: false,
isOnlyV4: false,
},
D: {
name: 'CodedCommentGroupIdRef',
type: 'xs:IDREF',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
};
const CHILD_TAGS = {
CCL: { name: 'CodedCommentListValue', isOnlyV4: false },
};
class CodedComment {
constructor(attributes, isoxmlManager) {
this.attributes = attributes;
this.isoxmlManager = isoxmlManager;
this.tag = constants_1.TAGS.CodedComment;
}
static fromXML(xml, isoxmlManager, internalId, targetClass = CodedComment) {
return (0, utils_1.fromXML)(xml, isoxmlManager, targetClass, ATTRIBUTES, CHILD_TAGS, internalId);
}
toXML() {
return (0, utils_1.toXML)(this, ATTRIBUTES, CHILD_TAGS);
}
}
exports.CodedComment = CodedComment;
(0, classRegistry_1.registerEntityClass)('main', constants_1.TAGS.CodedComment, CodedComment);