1 9 package j2me.nio; 10 import j2me.lang.CharSequence; 11 import j2me.lang.Comparable; 12 import j2me.lang.Readable; 13 import javolution.text.Appendable; 14 15 18 public abstract class CharBuffer extends Buffer implements Comparable , 19 Appendable , CharSequence , Readable { 20 21 CharBuffer(int capacity, int limit, int position, int mark) { 22 super(capacity, limit, position, mark); 23 } 24 } 25 | Popular Tags |