Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.bcel.classfile
Class Utility.JavaWriter  view Utility.JavaWriter download Utility.JavaWriter.java

java.lang.Object
  extended byjava.io.Writer
      extended byjava.io.FilterWriter
          extended byorg.apache.bcel.classfile.Utility.JavaWriter
Enclosing class:
Utility

private static class Utility.JavaWriter
extends java.io.FilterWriter

Encode bytes into valid java identifier characters. Used by encode()


Field Summary
 
Fields inherited from class java.io.FilterWriter
out
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
Utility.JavaWriter(java.io.Writer out)
           
 
Method Summary
 void write(char[] cbuf, int off, int len)
          This method writes len chars from the array buf starting at index offset to the underlying Writer.
 void write(int b)
          This method writes a single char of output to the underlying Writer.
 void write(java.lang.String str, int off, int len)
          This method writes len chars from the String starting at position offset.
 
Methods inherited from class java.io.FilterWriter
close, flush
 
Methods inherited from class java.io.Writer
write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Utility.JavaWriter

public Utility.JavaWriter(java.io.Writer out)
Method Detail

write

public void write(int b)
           throws java.io.IOException
Description copied from class: java.io.FilterWriter
This method writes a single char of output to the underlying Writer.


write

public void write(char[] cbuf,
                  int off,
                  int len)
           throws java.io.IOException
Description copied from class: java.io.FilterWriter
This method writes len chars from the array buf starting at index offset to the underlying Writer.


write

public void write(java.lang.String str,
                  int off,
                  int len)
           throws java.io.IOException
Description copied from class: java.io.FilterWriter
This method writes len chars from the String starting at position offset.