com.caucho.portal.generic
Interface PortletCharBuffer


public interface PortletCharBuffer


Method Summary
 void finish()
           
 void flush(java.io.Writer out)
           
 int getCapacity()
           
 boolean print(char[] buf, int off, int len)
           
 boolean print(int c)
           
 boolean print(java.lang.String str, int off, int len)
           
 void reset()
           
 int size()
           
 

Method Detail

getCapacity

int getCapacity()

print

boolean print(char[] buf,
              int off,
              int len)
Returns:
false if the buffer is full and the chars could not be written

print

boolean print(java.lang.String str,
              int off,
              int len)
Returns:
false if the buffer is full and the chars could not be written

print

boolean print(int c)
Returns:
false if the buffer is full and the char could not be written

flush

void flush(java.io.Writer out)
           throws java.io.IOException
Throws:
java.io.IOException

size

int size()

reset

void reset()

finish

void finish()