java.beans
Class ParameterDescriptor

java.lang.Object
  |
  +--java.beans.FeatureDescriptor
        |
        +--java.beans.ParameterDescriptor

public class ParameterDescriptor
extends FeatureDescriptor

The ParameterDescriptor class allows bean implementors to provide additional information on each of their parameters, beyond the low level type information provided by the java.lang.reflect.Method class.

Currently all our state comes from the FeatureDescriptor base class.


Fields inherited from class java.beans.FeatureDescriptor
displayName, expert, hidden, name, preferred, shortDescription, table
 
Constructor Summary
  ParameterDescriptor()
          Public default constructor.
(package private) ParameterDescriptor(ParameterDescriptor old)
          Package private dup constructor.
 
Methods inherited from class java.beans.FeatureDescriptor
addTable, attributeNames, getDisplayName, getName, getShortDescription, getValue, isExpert, isHidden, isPreferred, setDisplayName, setExpert, setHidden, setName, setPreferred, setShortDescription, setValue
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

ParameterDescriptor

public ParameterDescriptor()
Public default constructor.

ParameterDescriptor

ParameterDescriptor(ParameterDescriptor old)
Package private dup constructor. This must isolate the new object from any changes to the old object.