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

Quick Search    Search Deep

org.enhydra.kelp.common.wizard
Class Writer  view Writer download Writer.java

java.lang.Object
  extended byjava.io.Writer
      extended byjava.io.StringWriter
          extended byorg.enhydra.kelp.common.wizard.Writer

public class Writer
extends java.io.StringWriter

Class declaration


Field Summary
private  boolean buffered
           
private  java.lang.StringBuffer lineBuffer
           
private  boolean newLine
           
private  java.util.Vector writeListeners
           
 
Fields inherited from class java.io.StringWriter
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
Writer()
          Constructor declaration
 
Method Summary
 void addWriteListener(org.enhydra.kelp.common.event.WriteListener l)
          Method declaration
 boolean isLineBuffered()
           
private  void notifyWriteListeners(java.lang.String s)
          Method declaration
 void removeWriteListener(org.enhydra.kelp.common.event.WriteListener l)
          Method declaration
 void setLineBuffered(boolean b)
           
 void write(int c)
          Method declaration
 void write(java.lang.String str)
          Method declaration
 void write(java.lang.String str, int off, int len)
          Method declaration
 void writeln(java.lang.String str)
          Method declaration
 
Methods inherited from class java.io.StringWriter
close, flush, getBuffer, toString, write
 
Methods inherited from class java.io.Writer
write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

writeListeners

private java.util.Vector writeListeners

buffered

private boolean buffered

newLine

private boolean newLine

lineBuffer

private java.lang.StringBuffer lineBuffer
Constructor Detail

Writer

public Writer()
Constructor declaration

Method Detail

setLineBuffered

public void setLineBuffered(boolean b)

isLineBuffered

public boolean isLineBuffered()

write

public void write(int c)
Method declaration


write

public void write(java.lang.String str)
Method declaration


writeln

public void writeln(java.lang.String str)
Method declaration


write

public void write(java.lang.String str,
                  int off,
                  int len)
Method declaration


addWriteListener

public void addWriteListener(org.enhydra.kelp.common.event.WriteListener l)
Method declaration


removeWriteListener

public void removeWriteListener(org.enhydra.kelp.common.event.WriteListener l)
Method declaration


notifyWriteListeners

private void notifyWriteListeners(java.lang.String s)
Method declaration