|
||||||||||
| 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.MxOperationInfo
| Field Summary |
| Fields inherited from class org.jfox.mx.MxFeatureInfo |
description, name |
| Constructor Summary | |
MxOperationInfo(java.lang.String description,
java.lang.reflect.Method method)
Constructs an MxOperationInfo object. |
|
| Method Summary | |
java.lang.Object |
clone()
Returns a shallow clone of this instance. |
boolean |
equals(java.lang.Object o)
Compare this MxOperationInfo to another. |
java.lang.String |
getReturnType()
Returns the type of the method's return value. |
MxParameterInfo[] |
getSignature()
Returns the list of parameters for this operation. |
int |
hashCode()
Returns a hash code value for the object. |
boolean |
isInfoOperation()
该方法是否是一个 info 的方法, info 方法将在控制台上打印出结果 |
| 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 MxOperationInfo(java.lang.String description,
java.lang.reflect.Method method)
throws java.lang.IllegalArgumentException
MxOperationInfo object.
method - The java.lang.reflect.Method object
describing the MBean operation.description - A human readable description of the operation.
java.lang.IllegalArgumentException - if the name of
method is not a valid Java identifier, or if the
name of its return type or one of its parameter types is not a
syntactically legal Java type name. Java reserved words are
not considered illegal here. If method 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 java.lang.String getReturnType()
public MxParameterInfo[] getSignature()
Returns the list of parameters for this operation. 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 isInfoOperation()
public boolean equals(java.lang.Object o)
equals in class MxFeatureInfoo - the object to compare to.
o is an MxOperationInfo such
that its MxFeatureInfo.getName(), getReturnType(), MxFeatureInfo.getDescription(), isInfoOperation(), 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 | |||||||||