Package de.inetsoftware.classparser
Interface Member
-
- All Known Implementing Classes:
ConstantFieldRef
,ConstantInterfaceRef
,ConstantMethodRef
,ConstantRef
,MethodInfo
public interface Member
Described a field, method, function, etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getClassName()
The class name of the declaring class like "java/lang/Object".java.lang.String
getName()
The simple name without packagejava.lang.String
getType()
Get the type of the method or field.
-
-
-
Method Detail
-
getName
java.lang.String getName()
The simple name without package- Returns:
- the name
-
getClassName
java.lang.String getClassName()
The class name of the declaring class like "java/lang/Object".- Returns:
- the class name
-
getType
java.lang.String getType()
Get the type of the method or field. For example "(Ljava.lang.String;)I"- Returns:
- the type
-
-