org.inxar.jenesis
Interface Member

All Superinterfaces:
Access, Codeable, Declaration
All Known Subinterfaces:
AbstractMethod, ClassDeclaration, ClassField, ClassMethod, Constant, Field, InnerClass, Interface, LocalClass, Method, NewAnonymousClass, PackageClass, TypeDeclaration

public interface Member
extends Access, Declaration

Declaration subinterface for other declaration structures which may belong to a class / interface. These include fields, methods, and inner classes.


Fields inherited from interface org.inxar.jenesis.Access
PACKAGE, PRIVATE, PROTECTED, PUBLIC
 
Method Summary
 java.lang.String getName()
          Gets the identifier for this member.
 boolean isFinal()
          Accessor method for the isFinal flag.
 void isFinal(boolean value)
          Mutator method for the isFinal flag.
 boolean isStatic()
          Accessor method for the isStatic flag.
 void isStatic(boolean value)
          Mutator method for the isStatic flag.
 void setName(java.lang.String identifier)
          Sets the identifier for this member.
 
Methods inherited from interface org.inxar.jenesis.Access
getAccess, setAccess
 
Methods inherited from interface org.inxar.jenesis.Declaration
javadoc
 
Methods inherited from interface org.inxar.jenesis.Codeable
getComment, setComment, toCode, vm
 

Method Detail

setName

public void setName(java.lang.String identifier)
Sets the identifier for this member.

getName

public java.lang.String getName()
Gets the identifier for this member.

isFinal

public void isFinal(boolean value)
Mutator method for the isFinal flag.

isFinal

public boolean isFinal()
Accessor method for the isFinal flag.

isStatic

public void isStatic(boolean value)
Mutator method for the isStatic flag.

isStatic

public boolean isStatic()
Accessor method for the isStatic flag.