Class AN_JavaObject
Extended version of AN_LinkedObject that provides protected API, to interact with the linked java object class.
Inherited Members
Namespace: SA.Android.Utilities
Assembly: cs.temp.dll.dll
Syntax
public abstract class AN_JavaObject : AN_LinkedObject
Properties
JavaClassName
Java object class name.
Declaration
protected abstract string JavaClassName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
CallStatic(String, Object[])
Call static void method from linked java object.
Declaration
protected void CallStatic(string methodName, params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | methodName | Method name. |
| System.Object[] | args | Arguments. |
CallStatic<T>(String, Object[])
Call static method from linked java object.
Declaration
protected T CallStatic<T>(string methodName, params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | methodName | Method name. |
| System.Object[] | args | Arguments. |
Returns
| Type | Description |
|---|---|
| T | Method call result |
Type Parameters
| Name | Description |
|---|---|
| T | Defined return type |