4647484950515253
public void write(TStringContext context, TString string, Writer writer) throws DissectionException { try { writer.write(string.getString(context)); } catch (IOException e) { throw new DissectionException(e); } }
131132133134135136137138
writer.write(Integer.toString(index)); writer.write(":"); string.debugWrite(context, writer); writer.write("]"); } catch (IOException ioe) { throw new DissectionException(ioe); } }
8485868788899091
public void debugWrite(TStringContext context, Writer writer) throws DissectionException { try { writer.write(contents); } catch (IOException ioe) { throw new DissectionException(ioe); } }
9293949596979899
writer.write("[url="); writer.write(string); writer.write("]"); } } catch (IOException e) { throw new DissectionException(e); } }
109110111112113114115116
TString string = (TString) strings.get(i); string.debugWrite(context, writer); } writer.write("}"); } catch (IOException ioe) { throw new DissectionException(ioe); } }
6364656667686970
} public void visitDocumentImpl(DissectableDocument document) throws DissectionException { throw new DissectionException( exceptionLocalizer.format("unsupported-operation")); }
7071727374757677
} public void visitElement(DissectableElement element) throws DissectionException { throw new DissectionException( exceptionLocalizer.format("unsupported-operation")); }
7778798081828384
} public void visitText(DissectableText text) throws DissectionException { throw new DissectionException( exceptionLocalizer.format("unsupported-operation")); }
} public void visitShardLink(DissectableElement element) throws DissectionException { throw new DissectionException( exceptionLocalizer.format("unsupported-operation")); }
9192939495969798
} public void visitShardLinkGroup(DissectableElement element) throws DissectionException { throw new DissectionException( exceptionLocalizer.format("unsupported-operation")); }