Show / Hide Table of Contents

Class AN_JavaObject

Extended version of AN_LinkedObject that provides protected API, to interact with the linked java object class.

Inheritance
System.Object
AN_LinkedObject
AN_JavaObject
Inherited Members
AN_LinkedObject.k_NullObjectHash
AN_LinkedObject.m_HashCode
AN_LinkedObject.HashCode
AN_LinkedObject.IsNull
AN_LinkedObject.Dispose()
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

In This Article
Back to top Generated by DocFX