Searched defs:_text (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DCommentEvent.java36 private String _text; field in class:CommentEvent
44 _text = text;
52 return "<!--" + _text + "-->";
60 return _text ;
64 _text = text;
H A DCharactersEvent.java35 private String _text; field in class:CharactersEvent
50 _text = data;
60 _text = data;
68 return _text;
72 _text = data;
89 return "<![CDATA[" + _text + "]]>";
91 return _text;
129 if(!Util.isEmptyString(_text)){
131 for(int i=0;i<_text.length();i++){
132 if(!XMLChar.isSpace(_text
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DCDATA.java34 _text = text;
38 return _text;
50 return this._text.equals(cdata._text);
54 return _text.hashCode();
57 private String _text; field in class:CDATA
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DComment.java55 private String _text = new String (""); field in class:Comment
58 Comment () {_text = new String (""); _style = UNKNOWN;} // ctor
60 Comment (String text) {_text = text; _style = style (_text);} // ctor
63 public void text (String string) {_text = string; _style = style (_text);}
66 public String text () {return _text;}
84 public void write () {System.out.println (_text);}
89 if (_text == null || printStream == null)
117 String text = _text
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp72 outputStream* _text; // text stream member in class:xmlStream
132 outputStream* text() { return _text; }
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DText.java42 private String _text; field in class:Text
59 _text = text;
67 return _text;
76 if (_text == null)
77 _text = text;
79 _text = _text + text;
86 Util.println(_text);
95 if (_text == null) {
97 _text
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DIndentPrinter.java53 private StringBuffer _text; field in class:IndentPrinter
83 _text = new StringBuffer( 20 );
102 _line.append( _text );
103 _text = new StringBuffer( 20 );
121 _line.append( _text );
122 _text = new StringBuffer( 20 );
142 _text.append( text );
148 _text.append( text.toString() );
154 _text.append( ch );
160 _text
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSimpleResultTreeImpl.java255 private String _text; field in class:SimpleResultTreeImpl
299 return _text;
434 return _text;
633 _text = _textArray[0];
639 _text = buffer.toString();
838 return (getNodeIdent(nodeHandle) == RTF_TEXT) ? _text : null;

Completed in 57 milliseconds