All Packages Class Hierarchy This Package Previous Next Index
Class ants.wrapper.AutoNodeCache
java.lang.Object
|
+----ants.NodeCache
|
+----ants.wrapper.AutoNodeCache
- public class AutoNodeCache
- extends NodeCache
Node Cache with convenience functions for access
The wrapper classes W_*.java and interface glue below should be
automatically generated, but aren't yet! The "type signatures"
used to indicate the contents of an object are pseudo-classfile:
I = int, J = long, A = array (since [ isn't a valid in a name)
Names are i1, i2, etc., for the first int, second int, etc.
Only type permutations up to length 3 are supported! The base
cases for int and long are covered by java.lang.Integer/Long.
-
AutoNodeCache(Node, int, int)
-
-
get(int)
-
-
get(int, int, long)
-
-
get(int, long)
-
-
get(long)
-
-
put(int, int, long, Object, int)
-
-
put(int, long, Object, int)
-
-
put(int, Object, int)
-
-
put(long, Object, int)
-
AutoNodeCache
public AutoNodeCache(Node owner,
int capacity,
int duration)
get
public final synchronized Object get(int i)
put
public final synchronized Object put(int i,
Object value,
int time)
get
public final synchronized Object get(long l)
put
public final synchronized Object put(long l,
Object value,
int time)
get
public final synchronized Object get(int i1,
long j1)
put
public final synchronized Object put(int i1,
long j1,
Object value,
int time)
get
public final synchronized Object get(int i1,
int i2,
long j1)
put
public final synchronized Object put(int i1,
int i2,
long j1,
Object value,
int time)
All Packages Class Hierarchy This Package Previous Next Index