org.androidtransfuse.analysis.adapter
Interface ASTField

Package class diagram package ASTField
All Superinterfaces:
ASTBase
All Known Implementing Classes:
ASTClassField, ASTElementField

public interface ASTField
extends ASTBase

Abstract Syntax Tree Field node

Author:
John Ericksen

Method Summary
 ASTAccessModifier getAccessModifier()
          Supplies the access modifier for this field
 ASTType getASTType()
          Supplies the type of the field represented.
 Object getConstantValue()
          Supplies the constant value for this field (if one exists)

IE: static String value = "constant"

 
Methods inherited from interface org.androidtransfuse.analysis.adapter.ASTBase
getAnnotation, getAnnotations, getASTAnnotation, getName, isAnnotated
 

Method Detail

getASTType

ASTType getASTType()
Supplies the type of the field represented.

Returns:
field type

getAccessModifier

ASTAccessModifier getAccessModifier()
Supplies the access modifier for this field

Returns:
field access modifier

getConstantValue

Object getConstantValue()
Supplies the constant value for this field (if one exists)

IE: static String value = "constant"

Returns:
constant field values


Copyright © 2012. All Rights Reserved.