NOVA - The NOVA implementation class.NATIVE - The game implementation class.public interface NativeConverter<NOVA,NATIVE>
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<NATIVE> |
getNativeSide()
Get the class of the game implementation.
|
java.lang.Class<NOVA> |
getNovaSide()
Get the class of the NOVA implementation.
|
NATIVE |
toNative(NOVA novaObj)
Convert a NOVA implementation object to the game equivalent.
|
NOVA |
toNova(NATIVE nativeObj)
Convert a game implementation object to the NOVA equivalent.
|
java.lang.Class<NOVA> getNovaSide()
java.lang.Class<NATIVE> getNativeSide()
NOVA toNova(NATIVE nativeObj)
nativeObj - A game implementation object.