Uses of Class org.apache.bcel.classfile.AccessFlags

Uses in package org.apache.bcel.generic

Classes derived from org.apache.bcel.classfile.AccessFlags

class
Template class for building up a java class.
class
Template class for building up a field.
class
Super class for FieldGen and MethodGen objects, since they have some methods in common!
class
Super class for the GET/PUTxxx family of instructions.
class
GETFIELD - Fetch field from object
Stack: ..., objectref -> ..., value
OR
Stack: ..., objectref -> ..., value.word1, value.word2
class
GETSTATIC - Fetch static field from class
Stack: ..., -> ..., value
OR
Stack: ..., -> ..., value.word1, value.word2
class
Super class for the INVOKExxx family of instructions.
class
INVOKEINTERFACE - Invoke interface method
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
class
INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
class
INVOKESTATIC - Invoke a class (static) method
Stack: ..., [arg1, [arg2 ...]] -> ...
class
INVOKEVIRTUAL - Invoke instance method; dispatch based on class
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
class
Template class for building up a method.
class
PUTFIELD - Put field in object
Stack: ..., objectref, value -> ...
class
PUTSTATIC - Put static field in class
Stack: ..., value -> ...

Uses in package org.apache.bcel.classfile

Classes derived from org.apache.bcel.classfile.AccessFlags

class
This class represents the field info structure, i.e., the representation for a variable in the class.
class
Abstract super class for fields and methods.
class
Represents a Java class, i.e., the data structures, constant pool, fields, methods and commands contained in a Java .class file.
class
This class represents the method info structure, i.e., the representation for a method in the class.