Methods Summary |
---|
public abstract int | access()Return the access flags for the method - see VMConstants
|
public abstract AttributeVector | attributes()Return the attributes associated with the member
|
public final boolean | isFinal()Is the member final?
return (access() & ACCFinal) != 0;
|
public final boolean | isPrivate()Is the member private?
return (access() & ACCPrivate) != 0;
|
public final boolean | isProtected()Is the member protected?
return (access() & ACCProtected) != 0;
|
public final boolean | isPublic()Is the member public?
return (access() & ACCPublic) != 0;
|
public final boolean | isStatic()Is the member static?
return (access() & ACCStatic) != 0;
|
public abstract ConstUtf8 | name()Return the name of the member
|
public abstract void | setAccess(int newAccess)Set the access flags for the method - see VMConstants
|
public void | setIsFinal(boolean newFinal)Turn on or off the final qualifier for the member.
if (newFinal)
setAccess(access() | ACCFinal);
else
setAccess(access() & ~ACCFinal);
|
public abstract ConstUtf8 | signature()Return the type signature of the method
|