Package com.ibm.wala.cast.loader
Class AstFunctionClass
- java.lang.Object
-
- com.ibm.wala.cast.loader.AstFunctionClass
-
- All Implemented Interfaces:
IClass
,IClassHierarchyDweller
,ClassConstants
public abstract class AstFunctionClass extends Object implements IClass, ClassConstants
-
-
Field Summary
Fields Modifier and Type Field Description protected IMethod
functionBody
-
Fields inherited from interface com.ibm.wala.shrikeCT.ClassConstants
ACC_ABSTRACT, ACC_FINAL, ACC_INTERFACE, ACC_NATIVE, ACC_PRIVATE, ACC_PROTECTED, ACC_PUBLIC, ACC_STATIC, ACC_STRICT, ACC_SUPER, ACC_SYNCHRONIZED, ACC_TRANSIENT, ACC_VOLATILE, CONSTANT_Class, CONSTANT_Double, CONSTANT_FieldRef, CONSTANT_Float, CONSTANT_Integer, CONSTANT_InterfaceMethodRef, CONSTANT_InvokeDynamic, CONSTANT_Long, CONSTANT_MethodHandle, CONSTANT_MethodRef, CONSTANT_MethodType, CONSTANT_NameAndType, CONSTANT_String, CONSTANT_Utf8, MAGIC, REF_getField, REF_getStatic, REF_invokeInterface, REF_invokeSpecial, REF_invokeStatic, REF_invokeVirtual, REF_newInvokeSpecial, REF_putField, REF_putStatic
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AstFunctionClass(TypeReference reference, IClassLoader loader, CAstSourcePositionMap.Position sourcePosition)
protected
AstFunctionClass(TypeReference reference, TypeReference superReference, IClassLoader loader, CAstSourcePositionMap.Position sourcePosition)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<IClass>
getAllAncestorInterfaces()
Collection<IField>
getAllFields()
Compute the instance and static fields declared by this class or any of its superclasses.Collection<IClass>
getAllImplementedInterfaces()
Collection<IField>
getAllInstanceFields()
Compute the instance fields declared by this class or any of its superclasses.Collection<IMethod>
getAllMethods()
Compute the methods declared by this class or any of its superclasses.Collection<IField>
getAllStaticFields()
Compute the static fields declared by this class or any of its superclasses.IMethod
getClassInitializer()
IClassLoader
getClassLoader()
Return the object that represents the defining class loader for this class.IMethod
getCodeBody()
Collection<IField>
getDeclaredInstanceFields()
Compute the instance fields declared by this class.Collection<IMethod>
getDeclaredMethods()
Collection<IField>
getDeclaredStaticFields()
Collection<IClass>
getDirectInterfaces()
IField
getField(Atom name)
Finds a field.IField
getField(Atom name, TypeName type)
Finds a field, given a name and a type.IMethod
getMethod(Selector selector)
Finds method matching signature.int
getModifiers()
Return the integer that encodes the class's modifiers, as defined by the JVM specificationTypeName
getName()
TypeReference
getReference()
Reader
getSource()
String
getSourceFileName()
CAstSourcePositionMap.Position
getSourcePosition()
URL
getSourceURL()
IClass
getSuperclass()
boolean
isAbstract()
boolean
isArrayClass()
boolean
isInterface()
Is this class a Java interface?boolean
isPrivate()
boolean
isPublic()
boolean
isReferenceType()
Does 'this' refer to a reference type? If not, then it refers to a primitive type.boolean
isStatic()
String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.ibm.wala.classLoader.IClass
getAnnotations
-
Methods inherited from interface com.ibm.wala.ipa.cha.IClassHierarchyDweller
getClassHierarchy
-
-
-
-
Field Detail
-
functionBody
protected IMethod functionBody
-
-
Constructor Detail
-
AstFunctionClass
protected AstFunctionClass(TypeReference reference, TypeReference superReference, IClassLoader loader, CAstSourcePositionMap.Position sourcePosition)
-
AstFunctionClass
protected AstFunctionClass(TypeReference reference, IClassLoader loader, CAstSourcePositionMap.Position sourcePosition)
-
-
Method Detail
-
getClassLoader
public IClassLoader getClassLoader()
Description copied from interface:IClass
Return the object that represents the defining class loader for this class.- Specified by:
getClassLoader
in interfaceIClass
- Returns:
- the object that represents the defining class loader for this class.
-
isInterface
public boolean isInterface()
Description copied from interface:IClass
Is this class a Java interface?- Specified by:
isInterface
in interfaceIClass
-
isAbstract
public boolean isAbstract()
- Specified by:
isAbstract
in interfaceIClass
- Returns:
- true iff this class is abstract
-
isPublic
public boolean isPublic()
-
isPrivate
public boolean isPrivate()
-
isStatic
public boolean isStatic()
-
getModifiers
public int getModifiers()
Description copied from interface:IClass
Return the integer that encodes the class's modifiers, as defined by the JVM specification- Specified by:
getModifiers
in interfaceIClass
- Returns:
- the integer that encodes the class's modifiers, as defined by the JVM specification
-
getSuperclass
public IClass getSuperclass()
- Specified by:
getSuperclass
in interfaceIClass
- Returns:
- the superclass, or null if java.lang.Object
-
getDirectInterfaces
public Collection<IClass> getDirectInterfaces()
- Specified by:
getDirectInterfaces
in interfaceIClass
- Returns:
- Collection of (IClass) interfaces this class directly implements. If this class is an interface, returns the interfaces it immediately extends.
-
getAllImplementedInterfaces
public Collection<IClass> getAllImplementedInterfaces()
- Specified by:
getAllImplementedInterfaces
in interfaceIClass
- Returns:
- Collection of (IClass) interfaces this class implements, including all ancestors of interfaces immediately implemented. If this class is an interface, it returns all super-interfaces.
-
getAllAncestorInterfaces
public Collection<IClass> getAllAncestorInterfaces()
-
getMethod
public IMethod getMethod(Selector selector)
Description copied from interface:IClass
Finds method matching signature. Delegates to superclass if not found.
-
getField
public IField getField(Atom name)
Description copied from interface:IClass
Finds a field.
-
getField
public IField getField(Atom name, TypeName type)
Description copied from interface:IClass
Finds a field, given a name and a type. Returnsnull
if not found.
-
getReference
public TypeReference getReference()
- Specified by:
getReference
in interfaceIClass
- Returns:
- canonical TypeReference corresponding to this class
-
getSourcePosition
public CAstSourcePositionMap.Position getSourcePosition()
-
getSourceURL
public URL getSourceURL()
-
getSourceFileName
public String getSourceFileName()
- Specified by:
getSourceFileName
in interfaceIClass
- Returns:
- String holding the name of the source file that defined this class, or null if none found
-
getSource
public Reader getSource()
-
getClassInitializer
public IMethod getClassInitializer()
- Specified by:
getClassInitializer
in interfaceIClass
- Returns:
- the method that is this class's initializer, or null if none
-
isArrayClass
public boolean isArrayClass()
- Specified by:
isArrayClass
in interfaceIClass
- Returns:
- true iff the class is an array class.
-
getDeclaredMethods
public Collection<IMethod> getDeclaredMethods()
- Specified by:
getDeclaredMethods
in interfaceIClass
- Returns:
- an Iterator of the IMethods declared by this class.
-
getDeclaredInstanceFields
public Collection<IField> getDeclaredInstanceFields()
Description copied from interface:IClass
Compute the instance fields declared by this class.- Specified by:
getDeclaredInstanceFields
in interfaceIClass
- Returns:
- Collection of IFields
-
getDeclaredStaticFields
public Collection<IField> getDeclaredStaticFields()
- Specified by:
getDeclaredStaticFields
in interfaceIClass
- Returns:
- Collection of IField
-
getAllInstanceFields
public Collection<IField> getAllInstanceFields()
Description copied from interface:IClass
Compute the instance fields declared by this class or any of its superclasses.- Specified by:
getAllInstanceFields
in interfaceIClass
-
getAllStaticFields
public Collection<IField> getAllStaticFields()
Description copied from interface:IClass
Compute the static fields declared by this class or any of its superclasses.- Specified by:
getAllStaticFields
in interfaceIClass
-
getAllFields
public Collection<IField> getAllFields()
Description copied from interface:IClass
Compute the instance and static fields declared by this class or any of its superclasses.- Specified by:
getAllFields
in interfaceIClass
-
getAllMethods
public Collection<IMethod> getAllMethods()
Description copied from interface:IClass
Compute the methods declared by this class or any of its superclasses.- Specified by:
getAllMethods
in interfaceIClass
-
getName
public TypeName getName()
-
isReferenceType
public boolean isReferenceType()
Description copied from interface:IClass
Does 'this' refer to a reference type? If not, then it refers to a primitive type.- Specified by:
isReferenceType
in interfaceIClass
-
getCodeBody
public IMethod getCodeBody()
-
-