智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/fe/feeb94600c5b102b7770e240294...

24 lines
625 B

"use strict";
const { mixin } = require("../../utils");
const NodeImpl = require("./Node-impl").implementation;
const ChildNodeImpl = require("./ChildNode-impl").implementation;
const NODE_TYPE = require("../node-type");
class DocumentTypeImpl extends NodeImpl {
constructor(args, privateData) {
super(args, privateData);
this.nodeType = NODE_TYPE.DOCUMENT_TYPE_NODE;
this.name = privateData.name;
this.publicId = privateData.publicId;
this.systemId = privateData.systemId;
}
}
mixin(DocumentTypeImpl.prototype, ChildNodeImpl.prototype);
module.exports = {
implementation: DocumentTypeImpl
};