com.combex.e.edoc
Class EParameter

java.lang.Object
  |
  +--com.combex.e.edoc.EParameter
All Implemented Interfaces:
Marker, com.sun.javadoc.Parameter, PassByConstruction, Serializable

public class EParameter
extends Object
implements com.sun.javadoc.Parameter, PassByConstruction

Untamed:

See Also:
Serialized Form

Field Summary
private  String myName
          paramter local name.
private  EType myType
          parameter type information.
 
Fields inherited from interface org.erights.e.elib.serial.PassByConstruction
HONORARY, HONORED_NAMES, serialVersionUID
 
Constructor Summary
EParameter(EDocBuilder builder, com.sun.javadoc.Parameter parameter)
          Enabled:
EParameter(EType type, String name)
          Enabled:
 
Method Summary
 String name()
          Enabled: Get local name of this parameter.
 String toString()
          Suppressed: Returns a string representation of the class.
 com.sun.javadoc.Type type()
          Enabled: Get the type of this parameter.
 String typeName()
          Enabled: Get type name of this parameter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

myType

private final EType myType
parameter type information.


myName

private final String myName
paramter local name.

Constructor Detail

EParameter

public EParameter(EDocBuilder builder,
                  com.sun.javadoc.Parameter parameter)
Enabled:


EParameter

public EParameter(EType type,
                  String name)
Enabled:

Method Detail

type

public com.sun.javadoc.Type type()
Enabled: Get the type of this parameter.


name

public String name()
Enabled: Get local name of this parameter. For example if parameter is the short 'index', returns "index".


typeName

public String typeName()
Enabled: Get type name of this parameter. For example if parameter is the short 'index', returns "short".


toString

public String toString()
Suppressed: Returns a string representation of the class.

For example if parameter is the short 'index', returns "short index".

Overrides:
toString in class Object
Returns:
type name and parameter name of this parameter.


comments?