Home | History | Annotate | Download | only in impl

Lines Matching refs:_text

538         private final byte[] _text;
542 this._text = (text != null && text.length > 0 ? text : EMPTY_TXT);
549 return this._text;
554 out.writeBytes(_text, 0, _text.length);
563 if ((_text == null) && (txt._text != null)) {
566 if (txt._text.length != _text.length) {
569 for (int i = _text.length; i-- > 0;) {
570 if (txt._text[i] != _text[i]) {
610 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, _text);
631 aLog.append(" text: '" + ((_text.length > 20) ? new String(_text, 0, 17) + "..." : new String(_text)) + "'");