Uses of Interface
omix.lang.reflect.Method
Package | Description |
---|---|
omix.lang.reflect |
This package provides classes which allow a dynamic access of OVL code from Java.
|
omix.plugin.model.writable | |
omix.plugin.model.writable.accessory.trigger |
-
Uses of Method in omix.lang.reflect
Methods in omix.lang.reflect that return Method Modifier and Type Method Description Method
OVLEnvironment. getMethod(Object object, String methodName, Class<?>... params)
This method returns the OVL method of an object.Method
OVLEnvironment. getMethod(String namespace, Object object, String methodName, Class<?>... params)
This method returns the OVL method of an object. -
Uses of Method in omix.plugin.model.writable
Methods in omix.plugin.model.writable that return Method Modifier and Type Method Description Method
AbstractVisibleComponent. getMethod(String methodName, Class<?>... params)
Returns the method of the submitted network object defined in the document embedded OVL script.Method
AbstractVisibleComponent. getMethod(String namespace, String methodName, Class<?>... params)
Returns the method of the submitted network object defined in the given namespace.
Example code:
OVL:
extend Model{
void myMethod(String strg, int i){...}
}
can be called by:getMethod("myMethod", String.class, int.class)
orgetMethod("myMethod(java.lang.String,int)")
default Method
AbstractVisibleComponent. getMethod(OVLMethodDefinition methodDefinition)
Returns the method of the submitted network object defined in the document embedded OVL script.Method
Model. getMethod(String methodName, Class<?>... params)
Returns the method of the submitted network object defined in the document embedded OVL script.Method
Model. getMethod(String namespace, String methodName, Class<?>... params)
Returns the method of the submitted network object defined in the given namespace.
Example code:
OVL:
extend Model{
void myMethod(String strg, int i){...}
}
can be called by:getMethod("myMethod", String.class, int.class)
orgetMethod("myMethod(java.lang.String,int)")
default Method
Model. getMethod(OVLMethodDefinition methodDefinition)
Returns the method of the submitted network object defined in the document embedded OVL script. -
Uses of Method in omix.plugin.model.writable.accessory.trigger
Methods in omix.plugin.model.writable.accessory.trigger that return Method Modifier and Type Method Description Method
Trigger. getConnectedMethod()
Returns the method which is called by this trigger.