BRUtil - Making Java a Kinder, Gentler, Place to be.

brutil
Class Subarray

java.lang.Object
  |
  +--brutil.Subarray

public class Subarray
extends java.lang.Object

Subarrays act as sub-modules for the Array. They do the actual storage.


Field Summary
protected  java.lang.Object[] array
           
 
Constructor Summary
protected Subarray()
          Protected default constructor provided for the use of subclasses.
protected Subarray(int capacity)
          Initializes the array to this capacity.
 
Method Summary
protected  java.lang.Object[] createArray(int size)
           
protected  void initMemory()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

array

protected java.lang.Object[] array
Constructor Detail

Subarray

protected Subarray(int capacity)
Initializes the array to this capacity.

Subarray

protected Subarray()
Protected default constructor provided for the use of subclasses.
Method Detail

initMemory

protected void initMemory()

createArray

protected java.lang.Object[] createArray(int size)


BRUtil - Making Java a Kinder, Gentler, Place to be.