Sha256: f5f61e82f82bdc61a09410c73b06e1a097f2814ac3bfef78cbb7f2666850fa8e
Contents?: true
Size: 756 Bytes
Versions: 119
Compression:
Stored size: 756 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2006 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.nio; import j2me.lang.CharSequence; import j2me.lang.Comparable; import j2me.lang.Readable; import javolution.text.Appendable; /** * Class provided for the sole purpose of compiling the Readable interface. */ public abstract class CharBuffer extends Buffer implements Comparable, Appendable, CharSequence, Readable { CharBuffer(int capacity, int limit, int position, int mark) { super(capacity, limit, position, mark); } }
Version data entries
119 entries across 119 versions & 1 rubygems