Searched defs:write (Results 1 - 7 of 7) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DReverseRope.java125 public void write(final Writer out) throws IOException { method in class:ReverseRope
126 this.write(out, 0, this.length());
130 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:ReverseRope
134 out.write(this.charAt(j));
H A DConcatenationRope.java189 public void write(final Writer out) throws IOException { method in class:ConcatenationRope
190 this.left.write(out);
191 this.right.write(out);
195 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:ConcatenationRope
197 this.left.write(out, offset, length);
199 this.right.write(out, offset - this.left.length(), length);
202 this.left.write(out, offset, writeLeft);
203 this.right.write(out, 0, length - writeLeft);
H A DFlatCharArrayRope.java223 public void write(final Writer out) throws IOException { method in class:FlatCharArrayRope
224 this.write(out, 0, this.length());
228 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:FlatCharArrayRope
229 out.write(this.sequence, offset, length);
H A DFlatCharSequenceRope.java142 public void write(final Writer out) throws IOException { method in class:FlatCharSequenceRope
143 this.write(out, 0, this.length());
147 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:FlatCharSequenceRope
152 out.write(((String) this.sequence).substring(offset, offset+length));
156 out.write(this.sequence.charAt(j));
H A DSubstringRope.java153 public void write(final Writer out) throws IOException { method in class:SubstringRope
154 this.rope.write(out, this.offset, this.length);
158 public void write(final Writer out, final int offset, final int length) throws IOException { method in class:SubstringRope
159 this.rope.write(out, this.offset + offset, length);
/ropes-1.2.5/src/org/ahmadsoft/ropes/
H A DRope.java318 public void write(Writer out) throws IOException; method in interface:Rope
326 public void write(Writer out, int offset, int length) throws IOException; method in interface:Rope
/ropes-1.2.5/
H A Dropes.jar ... .ahmadsoft.ropes.Rope trim () public abstract void write (java.io.Writer) throws java.io. ...

Completed in 9 milliseconds