Package jadex.rules.state.javaimpl
Interface IOAVIdGenerator
-
- All Known Implementing Classes:
OAVDebugIdGenerator
,OAVLongIdGenerator
,OAVNameIdGenerator
,OAVObjectIdGenerator
,OAVWeakIdGenerator
public interface IOAVIdGenerator
Id generator interface for OAV state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
createId(IOAVState state, OAVObjectType type)
Create a unique id.boolean
isId(java.lang.Object id)
Test if an object is an id.
-
-
-
Method Detail
-
createId
java.lang.Object createId(IOAVState state, OAVObjectType type)
Create a unique id.- Parameters:
state
- The state.type
- The object type.- Returns:
- The new id.
-
isId
boolean isId(java.lang.Object id)
Test if an object is an id.- Parameters:
state
- The state.type
- The object type.- Returns:
- The new id.
-
-