Interactioner |
Interactions.createExtendedInteractioner(String mode,
ExtendedInteraction interation) |
Creates a Interactioner for a specific mode, passed as argument, and a native function already existing in java script code.
|
Interactioner |
Interactions.createExtendedInteractioner(String mode,
ExtendedInteraction interation,
boolean register) |
Creates a Interactioner for a specific mode, passed as argument, and a native function already existing in java script code.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
String code) |
Creates a Interactioner for a specific mode, passed as argument, and a string which represents the java script code, to implement the new interaction mode.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
String code,
boolean register) |
Creates a Interactioner for a specific mode, passed as argument, and a string which represents the java script code, to implement the new interaction mode.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
NativeInteraction callback) |
Creates a Interactioner for a specific mode, passed as argument, and a NativeInteraction which represents the java script function, to implement the new
interaction mode.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
NativeInteraction callback,
boolean register) |
Creates a Interactioner for a specific mode, passed as argument, and a NativeInteraction which represents the java script function, to implement the new
interaction mode.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
AbstractInjectableResource code) |
Creates a Interactioner for a specific mode, passed as argument, and a resource where the java script code, to implement the new interaction mode, is stored.
|
Interactioner |
Interactions.createNativeInteractioner(String mode,
AbstractInjectableResource code,
boolean register) |
Creates a Interactioner for a specific mode, passed as argument, and a resource where the java script code, to implement the new interaction mode, is stored.
|
Interactioner |
Interactions.getInteractioner(IsInteractionMode mode) |
Returns the interactioner.
If not exists, returns null .
|