Interface IDEmuMember
public interface IDEmuMember
An emulated
Member object. An emulated member object can only represent a Field, Method,
or Constructor reflection object.-
Method Summary
Modifier and TypeMethodDescriptionintRetrieve the member access flags.getName()Retrieve the member name.Retrieve the member signature.booleanDetermine whether this member represents a constructor.booleanisField()Determine whether this member represents a field.booleanisMethod()Determine whether this member represents a method.
-
Method Details
-
isField
boolean isField()Determine whether this member represents a field.- Returns:
- true for a field
-
isMethod
boolean isMethod()Determine whether this member represents a method.- Returns:
- true for a method
-
isConstructor
boolean isConstructor()Determine whether this member represents a constructor.- Returns:
- true for a constructor
-
getSignature
String getSignature()Retrieve the member signature.- Returns:
- the member signature
-
getName
String getName()Retrieve the member name.- Returns:
- the member name
-
getAccessFlags
int getAccessFlags()Retrieve the member access flags.- Returns:
- the access flags
-