KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > j2me > nio > CharBuffer


1 /*
2  * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
3  * Copyright (C) 2006 - Javolution (http://javolution.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */

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 /**
16  * Class provided for the sole purpose of compiling the Readable interface.
17  */

18 public abstract class CharBuffer extends Buffer implements Comparable JavaDoc,
19         Appendable JavaDoc, CharSequence JavaDoc, Readable JavaDoc {
20
21     CharBuffer(int capacity, int limit, int position, int mark) {
22         super(capacity, limit, position, mark);
23     }
24 }
25
Popular Tags