au.com.swz.jatlom
Class VarKind

java.lang.Object
  extended by au.com.swz.jatlom.VarKind

public class VarKind
extends java.lang.Object

An enumeration of the different kinds of variables.

Author:
Mark Richter

Field Summary
static VarKind UNKNOWN
          Unknown or Unsupported
static VarKind VAR_CONST
          A symbolic constant.
static VarKind VAR_DISPATCH
          The variable can only be accessed through IDispatch::Invoke.
static VarKind VAR_PERINSTANCE
          The variable is a field or member of the type.
static VarKind VAR_STATIC
          There is only one instance of the variable
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

VAR_PERINSTANCE

public static VarKind VAR_PERINSTANCE
The variable is a field or member of the type. It exists at a fixed offset within each instance of the type.


VAR_STATIC

public static VarKind VAR_STATIC
There is only one instance of the variable


VAR_CONST

public static VarKind VAR_CONST
A symbolic constant. There is no memory associated with it.


VAR_DISPATCH

public static VarKind VAR_DISPATCH
The variable can only be accessed through IDispatch::Invoke.


UNKNOWN

public static VarKind UNKNOWN
Unknown or Unsupported

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object