isoxml-angular
Version:
JavaScript library to parse and generate ISOXML (ISO11783-10) files
54 lines (53 loc) • 1.56 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CodedComment = void 0;
const classRegistry_1 = require("../classRegistry");
const utils_1 = require("../utils");
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 = "CCT" /* 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", "CCT" /* TAGS.CodedComment */, CodedComment);