"

2013 FRC Java API

"

com.sun.squawk
Class ClassFileField

java.lang.Object
  extended by com.sun.squawk.ClassFileMember
      extended by com.sun.squawk.ClassFileField
Direct Known Subclasses:
ClassFileConstantField

public class ClassFileField
extends ClassFileMember

An instance of ClassFileField encapsulates all the symbolic information of a field declaration in a class file. This class is provided for a subsystem (such as the translator) that loads a class definition from a class file.


Field Summary
static ClassFileField[] NO_FIELDS
          A zero-length array of ClassFileFields.
 
Constructor Summary
ClassFileField(String name, int modifiers, Klass type)
          Creates a new ClassFileField instance.
 
Method Summary
 Klass getType()
          Gets the type of this field.
 
Methods inherited from class com.sun.squawk.ClassFileMember
getFullyQualifiedName, getModifiers, getName, isStatic
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NO_FIELDS

public static final ClassFileField[] NO_FIELDS
A zero-length array of ClassFileFields.

Constructor Detail

ClassFileField

public ClassFileField(String name,
                      int modifiers,
                      Klass type)
Creates a new ClassFileField instance.

Parameters:
name - the name of the field
modifiers - the modifiers of the field
type - the type of the field
Method Detail

getType

public final Klass getType()
Gets the type of this field.

Returns:
the type of this field

"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"