|
|||||||||
| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> bcel >> [ classfile overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.puppycrawl.tools.checkstyle.bcel.classfile
Class FieldOrMethodDefinition

java.lang.Objectcom.puppycrawl.tools.checkstyle.bcel.classfile.FieldOrMethodDefinition
- Direct Known Subclasses:
- FieldDefinition, MethodDefinition
- public class FieldOrMethodDefinition
- extends java.lang.Object
Contains the definition of a Field or a Method.
| Field Summary | |
private org.apache.bcel.classfile.FieldOrMethod |
mFieldOrMethod
the Field or Method |
| Constructor Summary | |
protected |
FieldOrMethodDefinition(org.apache.bcel.classfile.FieldOrMethod aFieldOrMethod)
Constructs a FieldOrMethodDefinition for a Field
or a Method. |
| Method Summary | |
protected org.apache.bcel.classfile.FieldOrMethod |
getFieldOrMethod()
Returns the FieldOrMethod. |
java.lang.String |
getName()
Returns the name of the Field or Method. |
java.lang.String |
toString()
Convert this Object to a human-readable String. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
mFieldOrMethod
private org.apache.bcel.classfile.FieldOrMethod mFieldOrMethod
- the Field or Method
| Constructor Detail |
FieldOrMethodDefinition
protected FieldOrMethodDefinition(org.apache.bcel.classfile.FieldOrMethod aFieldOrMethod)
- Constructs a
FieldOrMethodDefinitionfor a Field or a Method.
| Method Detail |
getFieldOrMethod
protected org.apache.bcel.classfile.FieldOrMethod getFieldOrMethod()
- Returns the FieldOrMethod.
getName
public java.lang.String getName()
- Returns the name of the Field or Method.
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object - Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null, string concatenation will instead use"null".The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode()).
|
|||||||||
| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> bcel >> [ classfile overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
com.puppycrawl.tools.checkstyle.bcel.classfile.FieldOrMethodDefinition