1 /** 2 * @fileoverview Class represents a generic token called not-tag. 3 */ 4 5 goog.provide('xrx.token.NotTag'); 6 7 8 9 goog.require('xrx.token'); 10 11 12 13 /** 14 * Constructs a new not-tag token. 15 * xrx.token.NotTag is a container token for all tokens which 16 * are no tags and not part of a tag (attribute, namespace), 17 * i.e. text, comment, processing instruction. 18 * 19 * @constructor 20 * @extends xrx.token 21 */ 22 xrx.token.NotTag = function(label, opt_offset, opt_length) { 23 goog.base(this, xrx.token.NOT_TAG, label, opt_offset, opt_length); 24 }; 25 goog.inherits(xrx.token.NotTag, xrx.token);