| 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectaim4.util.ArrayListRegistry<T>
public class ArrayListRegistry<T>
A registry based on array list.
| Constructor Summary | |
|---|---|
ArrayListRegistry()
Create an array list registry.  | 
|
ArrayListRegistry(int initId)
Create an array list registry.  | 
|
| Method Summary | |
|---|---|
 T | 
get(int id)
Retrieve an object from the registry.  | 
 int | 
getNewId()
Get a new unused ID.  | 
 boolean | 
isIdExist(int id)
Whether or not an object is in the registry.  | 
 int | 
register(T obj)
Register an object.  | 
 void | 
set(int id,
    T obj)
Associate an object to a given ID.  | 
 void | 
setNull(int id)
Remove the object associated with a given ID from the registry.  | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public ArrayListRegistry()
public ArrayListRegistry(int initId)
initId - the initial ID| Method Detail | 
|---|
public int register(T obj)
Registry
register in interface Registry<T>obj - the object
public boolean isIdExist(int id)
Registry
isIdExist in interface Registry<T>id - the ID of the object
public T get(int id)
Registry
get in interface Registry<T>id - the ID of the object
public int getNewId()
Registry
getNewId in interface Registry<T>
public void set(int id,
                T obj)
Registry
set in interface Registry<T>id - the IDobj - the objectpublic void setNull(int id)
Registry
setNull in interface Registry<T>id - the ID
  | 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||