Available Methods
- T_BYTE
- INVOKESTATIC
- T_LONG
- T_ARRAY
- T_INT
- T_CHAR
- T_SHORT
- INVOKEINTERFACE
- T_DOUBLE
- T_FLOAT
- CONSTANT_Methodref ( )
- T_BOOLEAN
- IRETURN
- T_OBJECT
- ATTR_DEPRECATED
- CONSTANT_Long ( )
- T_VOID
- CONSTANT_Fieldref ( )
- CONSTANT_Class ( )
- INVOKEVIRTUAL
- CONSTANT_Double ( )
- LLOAD
- ATTR_INNER_CLASSES
- ACC_ABSTRACT
- IINC
- CONSTANT_NameAndType ( )
- CONSTANT_Float ( )
- F2D ( )
- LSUB
- INEG
- IFLE
- ACC_INTERFACE
- CONSTANT_NAMES
- ACC_STATIC
- LAND
- RETURN
- IFGT
- FSTORE
- ACC_FINAL
- CONSTANT_InterfaceMethodref ( )
- ISUB
- F2L ( )
- DADD
- LSHL
- IFNONNULL
- ACC_SUPER
- FDIV
- ICONST_0 ( )
- LDIV
Related Classes
- java.util.StringTokenizer
- java.awt.event.ActionEvent
- java.awt.event.ActionListener
- org.apache.bcel.Repository
- org.apache.bcel.generic.Type
- org.apache.bcel.generic.InstructionHandle
- org.apache.bcel.generic.ConstantPoolGen
- org.apache.bcel.generic.InstructionList
- org.apache.bcel.generic.ObjectType
- org.apache.bcel.generic.ClassGen
- org.apache.bcel.generic.MethodGen
- edu.umd.cs.findbugs.Priorities
- edu.umd.cs.findbugs.BugInstance
- org.luaj.vm2.LuaString
- org.apache.bcel.generic.INVOKEVIRTUAL
- org.apache.bcel.generic.ALOAD
- org.apache.bcel.generic.FieldGen
- org.apache.bcel.generic.InvokeInstruction
- org.apache.bcel.generic.GETSTATIC
- org.apache.bcel.generic.InstructionFactory
- org.apache.bcel.classfile.Utility
- org.apache.bcel.generic.ASTORE
- org.luaj.vm2.Lua
- org.apache.bcel.classfile.ConstantCP
- org.apache.bcel.classfile.ConstantNameAndType
Java Code Examples for org.apache.bcel.Constants#ACC_ABSTRACT
The following examples show how to use
org.apache.bcel.Constants#ACC_ABSTRACT .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClassParser.java From ApkToolPlus with Apache License 2.0 | 6 votes |
/** * Read information about the class and its super class. * @throws IOException * @throws ClassFormatException */ private final void readClassInfo() throws IOException, ClassFormatException { access_flags = file.readUnsignedShort(); /* Interfaces are implicitely abstract, the flag should be set * according to the JVM specification. */ if((access_flags & Constants.ACC_INTERFACE) != 0) access_flags |= Constants.ACC_ABSTRACT; if(((access_flags & Constants.ACC_ABSTRACT) != 0) && ((access_flags & Constants.ACC_FINAL) != 0 )) throw new ClassFormatException("Class can't be both final and abstract"); class_name_index = file.readUnsignedShort(); superclass_name_index = file.readUnsignedShort(); }
Example 2
Source File: AccessFlags.java From ApkToolPlus with Apache License 2.0 | 4 votes |
public final boolean isAbstract() { return (access_flags & Constants.ACC_ABSTRACT) != 0; }