1 /** 2 * @fileoverview A class representing the comment node 3 * of the XDM interface. 4 */ 5 6 goog.provide('xrx.node.Comment'); 7 8 9 10 goog.require('xrx.node'); 11 12 13 14 /** 15 * TODO(jochen): implement this. 16 */ 17 xrx.node.Comment = function() {}; 18 19 20 xrx.node.Comment.prototype.accAttributes = function() {}; 21 xrx.node.Comment.prototype.accBaseUri = function() {}; 22 xrx.node.Comment.prototype.accChildren = function() {}; 23 xrx.node.Comment.prototype.accDocumentUri = function() {}; 24 xrx.node.Comment.prototype.accIsId = function() {}; 25 xrx.node.Comment.prototype.accIsIdrefs = function() {}; 26 xrx.node.Comment.prototype.accNamespaceNodes = function() {}; 27 xrx.node.Comment.prototype.accNilled = function() {}; 28 xrx.node.Comment.prototype.accNodeKind = function() {}; 29 xrx.node.Comment.prototype.accNodeName = function() {}; 30 xrx.node.Comment.prototype.accParent = function() {}; 31 xrx.node.Comment.prototype.accStringValue = function() {}; 32 xrx.node.Comment.prototype.accTypeName = function() {}; 33 xrx.node.Comment.prototype.accTypedValue = function() {}; 34 xrx.node.Comment.prototype.accUnparsedEntityPublicId = function() {}; 35 xrx.node.Comment.prototype.accUnparsedEntitySystemId = function() {}; 36