org.jinterop.dcom.impls.automation
Interface InvokeKind


public interface InvokeKind

Implements the INVOKEKIND structure of COM Automation.

Since:
2.0 (formerly INVOKEKIND)

Field Summary
static java.lang.Integer INVOKE_FUNC
          The member is called using a normal function invocation syntax
static java.lang.Integer INVOKE_PROPERTYGET
          The function is invoked using a normal property-access syntax.
static java.lang.Integer INVOKE_PROPERTYPUT
          The function is invoked using a property value assignment syntax.
static java.lang.Integer INVOKE_PROPERTYPUTREF
          The function is invoked using a property reference assignment syntax.
 

Field Detail

INVOKE_FUNC

static final java.lang.Integer INVOKE_FUNC
The member is called using a normal function invocation syntax


INVOKE_PROPERTYGET

static final java.lang.Integer INVOKE_PROPERTYGET
The function is invoked using a normal property-access syntax.


INVOKE_PROPERTYPUT

static final java.lang.Integer INVOKE_PROPERTYPUT
The function is invoked using a property value assignment syntax. Syntactically, a typical programming language might represent changing a property in the same way as assignment. For example:object.property : = value.


INVOKE_PROPERTYPUTREF

static final java.lang.Integer INVOKE_PROPERTYPUTREF
The function is invoked using a property reference assignment syntax.