Save This Page
Home » j2ssh-0.2.9-src » com.sshtools.daemon.terminal » [javadoc | source]
com.sshtools.daemon.terminal
class: CharBuffer [javadoc | source]
java.lang.Object
   com.sshtools.daemon.terminal.CharBuffer

Direct Known Subclasses:
    Buffer, Buffer

SSHTools - Java SSH API The contents of this package has been derived from the TelnetD library available from http://sourceforge.net/projects/telnetd The original license of the source code is as follows: TelnetD library (embeddable telnet daemon) Copyright (C) 2000 Dieter Wimberger This library is free software; you can either redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1,1999 as published by the Free Software Foundation (see copy received along with the library), or under the terms of the BSD-style license received along with this library.
Constructor:
 public CharBuffer(int size) 
Method from com.sshtools.daemon.terminal.CharBuffer Summary:
append,   clear,   ensureSpace,   getCharAt,   insertCharAt,   removeCharAt,   setCharAt,   size,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from com.sshtools.daemon.terminal.CharBuffer Detail:
 public  void append(char aChar) throws BufferOverflowException 
 public  void clear() 
 public  void ensureSpace(int chars) throws BufferOverflowException 
 public char getCharAt(int pos) throws IndexOutOfBoundsException 
 public  void insertCharAt(int pos,
    char ch) throws IndexOutOfBoundsException, BufferOverflowException 
 public  void removeCharAt(int pos) throws IndexOutOfBoundsException 
 public  void setCharAt(int pos,
    char ch) throws IndexOutOfBoundsException 
 public int size() 
 public String toString()