1 19 20 package org.netbeans.modules.xml.text.syntax.dom; 21 22 import org.w3c.dom.*; 23 import org.netbeans.modules.xml.text.syntax.*; 24 import org.netbeans.modules.xml.spi.dom.*; 25 import org.netbeans.editor.*; 26 27 30 public class CDATASectionImpl extends TextImpl { 31 32 35 public CDATASectionImpl(XMLSyntaxSupport support, TokenItem from, int to) { 36 super( support, from, to ); 37 } 38 39 42 CDATASectionImpl(XMLSyntaxSupport syntax, TokenItem from, AttrImpl parent) { 43 super( syntax, from, parent); 44 } 45 46 } 47 48 | Popular Tags |