Method Summary |
|
public static int | clear(int accflags, int clearBit) Clears a specified bit in accflags . |
public static boolean | isPackage(int accflags) Returns true if the access flags include neither public, protected,
or private. |
public static boolean | isPrivate(int accflags) Returns true if the access flags include the private bit. |
public static boolean | isProtected(int accflags) Returns true if the access flags include the protected bit. |
public static boolean | isPublic(int accflags) Returns true if the access flags include the public bit. |
public static int | of(int modifier) Converts a javassist.Modifier into
a javassist.bytecode.AccessFlag. |
public static int | setPackage(int accflags) Clears the public, protected, and private bits. |
public static int | setPrivate(int accflags) Truns the private bit on. |
public static int | setProtected(int accflags) Truns the protected bit on. |
public static int | setPublic(int accflags) Truns the public bit on. |
public static int | toModifier(int accflags) Converts a javassist.bytecode.AccessFlag
into a javassist.Modifier. |