org.apache.bcel.classfile
public abstract class AccessFlags extends Object implements Serializable
Version: $Id: AccessFlags.java 386056 2006-03-15 11:31:56Z tcurdt $
| Field Summary | |
|---|---|
| protected int | access_flags |
| Constructor Summary | |
|---|---|
| AccessFlags() | |
| AccessFlags(int a) | |
| Method Summary | |
|---|---|
| int | getAccessFlags() |
| int | getModifiers() |
| void | isAbstract(boolean flag) |
| boolean | isAbstract() |
| void | isAnnotation(boolean flag) |
| boolean | isAnnotation() |
| void | isEnum(boolean flag) |
| boolean | isEnum() |
| void | isFinal(boolean flag) |
| boolean | isFinal() |
| void | isInterface(boolean flag) |
| boolean | isInterface() |
| void | isNative(boolean flag) |
| boolean | isNative() |
| void | isPrivate(boolean flag) |
| boolean | isPrivate() |
| void | isProtected(boolean flag) |
| boolean | isProtected() |
| void | isPublic(boolean flag) |
| boolean | isPublic() |
| void | isStatic(boolean flag) |
| boolean | isStatic() |
| void | isStrictfp(boolean flag) |
| boolean | isStrictfp() |
| void | isSynchronized(boolean flag) |
| boolean | isSynchronized() |
| void | isSynthetic(boolean flag) |
| boolean | isSynthetic() |
| void | isTransient(boolean flag) |
| boolean | isTransient() |
| void | isVolatile(boolean flag) |
| boolean | isVolatile() |
| void | setAccessFlags(int access_flags) Set access flags aka "modifiers". |
| void | setFlag(int flag, boolean set) |
| void | setModifiers(int access_flags) Set access flags aka "modifiers". |
Parameters: a inital access flags
Returns: Access flags of the object aka. "modifiers".
Returns: Access flags of the object aka. "modifiers".
Parameters: access_flags Access flags of the object.
Parameters: access_flags Access flags of the object.