01: /*
02: * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
03: * Copyright (C) 2006 - Javolution (http://javolution.org/)
04: * All rights reserved.
05: *
06: * Permission to use, copy, modify, and distribute this software is
07: * freely granted, provided that this notice is preserved.
08: */
09: package j2me.nio;
10:
11: import j2me.lang.CharSequence;
12: import j2me.lang.Comparable;
13: import j2me.lang.Readable;
14: import javolution.text.Appendable;
15:
16: /**
17: * Class provided for the sole purpose of compiling the Readable interface.
18: */
19: public abstract class CharBuffer extends Buffer implements Comparable,
20: Appendable, CharSequence, Readable {
21:
22: CharBuffer(int capacity, int limit, int position, int mark) {
23: super(capacity, limit, position, mark);
24: }
25: }
|