Methods Summary |
---|
public final java.lang.Object | getNote(int id)Get a note associated with this hanlder context.
return notes[id];
|
public final int | getType()Get the type of the handler context.
return type;
|
public void | recycle()Recycle the hanlder context.
type = 0;
for( int i=0; i<notes.length; i++ ) {
notes[i]=null;
}
|
public final void | setNote(int id, java.lang.Object o)Associate a note with this hanlder context.
notes[id]=o;
|
public final void | setType(int type)Set the type of the handler context.
this.type = type;
|