com.togethersoft.sca.ast
Interface AstModifiers


public interface AstModifiers

The Modifiers interface defines access modifier flags. The flag values are defined according to those specified in the Java Virtual Machine Specification document and must not be changed.


Field Summary
static int ACC_ABSTRACT
          Constant representing the abstract modifier.
static int ACC_FINAL
          Constant representing the final modifier.
static int ACC_INTERFACE
          Constant representing the interface modifier.
static int ACC_NATIVE
          Constant representing the native modifier.
static int ACC_PRIVATE
          Constant representing the private modifier.
static int ACC_PROTECTED
          Constant representing the protected modifier.
static int ACC_PUBLIC
          Constant representing the public modifier.
static int ACC_STATIC
          Constant representing the static modifier.
static int ACC_STRICTFP
          Constant representing the strictfp modifier.
static int ACC_SYNCHRONIZED
          Constant representing the synchronized modifier.
static int ACC_TRANSIENT
          Constant representing the transient modifier.
static int ACC_VOLATILE
          Constant representing the volatile modifier.
 

Field Detail

ACC_ABSTRACT

public static final int ACC_ABSTRACT
Constant representing the abstract modifier.

ACC_FINAL

public static final int ACC_FINAL
Constant representing the final modifier.

ACC_INTERFACE

public static final int ACC_INTERFACE
Constant representing the interface modifier.

ACC_NATIVE

public static final int ACC_NATIVE
Constant representing the native modifier.

ACC_PRIVATE

public static final int ACC_PRIVATE
Constant representing the private modifier.

ACC_PROTECTED

public static final int ACC_PROTECTED
Constant representing the protected modifier.

ACC_PUBLIC

public static final int ACC_PUBLIC
Constant representing the public modifier.

ACC_STATIC

public static final int ACC_STATIC
Constant representing the static modifier.

ACC_STRICTFP

public static final int ACC_STRICTFP
Constant representing the strictfp modifier.

ACC_SYNCHRONIZED

public static final int ACC_SYNCHRONIZED
Constant representing the synchronized modifier.

ACC_TRANSIENT

public static final int ACC_TRANSIENT
Constant representing the transient modifier.

ACC_VOLATILE

public static final int ACC_VOLATILE
Constant representing the volatile modifier.