net.sf.transjvm
Class Flags

java.lang.Object
  extended by net.sf.transjvm.Flags

public class Flags
extends java.lang.Object

Constant flags


Field Summary
static int ABSTRACT
          Marks class or method as abstract.
static int DEFAULT
          Default access ie, package members only.
static int FINAL
          Marks class, method or field as final.
static int INTERFACE
          Marks class as an interface.
static int NATIVE
          Marks method as native.
static int PRIVATE
          Private access ie, this class only.
static int PROTECTED
          Protected access ie, As default plus subclasses.
static int PUBLIC
          Public access ie, Accessible from anywhere.
static int STATIC
          Marks method or field as static.
static int STRICT
          Marks class or method as have strict floating point semantics.
static int SYNCHRONIZED
          Marks method as synchronized.
static int TRANSIENT
          Marks field as transient.
static int VOLATILE
          Marks field as volatile.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ABSTRACT

public static final int ABSTRACT
Marks class or method as abstract.

See Also:
Constant Field Values

DEFAULT

public static final int DEFAULT
Default access ie, package members only.

See Also:
Constant Field Values

FINAL

public static final int FINAL
Marks class, method or field as final.

See Also:
Constant Field Values

INTERFACE

public static final int INTERFACE
Marks class as an interface.

See Also:
Constant Field Values

NATIVE

public static final int NATIVE
Marks method as native.

See Also:
Constant Field Values

PRIVATE

public static final int PRIVATE
Private access ie, this class only.

See Also:
Constant Field Values

PROTECTED

public static final int PROTECTED
Protected access ie, As default plus subclasses.

See Also:
Constant Field Values

PUBLIC

public static final int PUBLIC
Public access ie, Accessible from anywhere.

See Also:
Constant Field Values

STATIC

public static final int STATIC
Marks method or field as static.

See Also:
Constant Field Values

STRICT

public static final int STRICT
Marks class or method as have strict floating point semantics.

See Also:
Constant Field Values

SYNCHRONIZED

public static final int SYNCHRONIZED
Marks method as synchronized.

See Also:
Constant Field Values

TRANSIENT

public static final int TRANSIENT
Marks field as transient.

See Also:
Constant Field Values

VOLATILE

public static final int VOLATILE
Marks field as volatile.

See Also:
Constant Field Values


Copyright 2004-5, Mark Shannon