org.inxar.jenesis
Interface FormalParameter

All Superinterfaces:
Codeable, Declaration

public interface FormalParameter
extends Declaration

Declaration subinterface for formal parameter.


Method Summary
 java.lang.String getName()
          Getter method for the formal parameter identifier.
 Type getType()
          Getter method for the formal parameter type.
 boolean isFinal()
          Getter method for the formal parameter isFinal flag.
 void isFinal(boolean value)
          Setter method for the formal parameter isFinal flag.
 void setName(java.lang.String id)
          Setter method for the formal parameter identifier.
 void setType(Type type)
          Setter method for the formal parameter type.
 
Methods inherited from interface org.inxar.jenesis.Declaration
javadoc
 
Methods inherited from interface org.inxar.jenesis.Codeable
getComment, setComment, toCode, vm
 

Method Detail

setType

public void setType(Type type)
Setter method for the formal parameter type.

getType

public Type getType()
Getter method for the formal parameter type.

setName

public void setName(java.lang.String id)
Setter method for the formal parameter identifier.

getName

public java.lang.String getName()
Getter method for the formal parameter identifier.

isFinal

public void isFinal(boolean value)
Setter method for the formal parameter isFinal flag.

isFinal

public boolean isFinal()
Getter method for the formal parameter isFinal flag.