|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jfox.mx.MxFeatureInfo
org.jfox.mx.MxConstructorInfo
| Field Summary |
| Fields inherited from class org.jfox.mx.MxFeatureInfo |
description, name |
| Constructor Summary | |
MxConstructorInfo(java.lang.String description,
java.lang.reflect.Constructor constructor)
Constructs an MxConstructorInfo object. |
|
| Method Summary | |
java.lang.Object |
clone()
Returns a shallow clone of this instance. |
boolean |
equals(java.lang.Object o)
Compare this MxConstructorInfo to another. |
MxParameterInfo[] |
getSignature()
Returns the list of parameters for this constructor. |
int |
hashCode()
Returns a hash code value for the object. |
| Methods inherited from class org.jfox.mx.MxFeatureInfo |
getDescription, getName |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public MxConstructorInfo(java.lang.String description,
java.lang.reflect.Constructor constructor)
MxConstructorInfo object.
description - A human readable description of the operation.constructor - The java.lang.reflect.Constructor
object describing the MBean constructor.
java.lang.IllegalArgumentException - if one of
constructor's parameter types is not a
syntactically legal Java type name. Java reserved words are
not considered illegal here. If constructor comes
from a class compiled from Java, this exception cannot happen.| Method Detail |
public java.lang.Object clone()
Returns a shallow clone of this instance. The clone is obtained by simply calling super.clone(), thus calling the default native shallow cloning mechanism implemented by Object.clone(). No deeper cloning of any internal field is made.
Since this class is immutable, cloning is chiefly of interest to subclasses.
Cloneablepublic MxParameterInfo[] getSignature()
Returns the list of parameters for this constructor. Each
parameter is described by an MxParameterInfo
object.
The returned array is a shallow copy of the internal array,
which means that it is a copy of the internal array of
references to the MxParameterInfo objects but
that each referenced MxParameterInfo object is
not copied.
MxParameterInfo objects.public boolean equals(java.lang.Object o)
equals in class MxFeatureInfoo - the object to compare to.
o is an MxConstructorInfo such
that its MxFeatureInfo.getName(), MxFeatureInfo.getDescription(), and
getSignature() values are equal (not necessarily
identical) to those of this MxConstructorInfo. Two
signature arrays are equal if their elements are pairwise
equal.public int hashCode()
java.lang.Objectjava.util.Hashtable.
The general contract of hashCode is:
hashCode method on each of
the two objects must produce the same integer result.
Object.equals(java.lang.Object)
method, then calling the hashCode method on each of the
two objects must produce distinct integer results. However, the
programmer should be aware that producing distinct integer results
for unequal objects may improve the performance of hashtables.
As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)
hashCode in class MxFeatureInfo
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||