Uses of Class
edu.ksu.cis.projects.bogor.ast.Field

Packages that use Field
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
edu.ksu.cis.projects.bogor.symboltable Provides for Bogor symbol table. 
 

Uses of Field in edu.ksu.cis.projects.bogor.ast
 

Methods in edu.ksu.cis.projects.bogor.ast that return Field
 Field Field.clone()
           
 Field RecordDefinition.getField(int index)
          Gets a typed-id at the specified index.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type Field
protected  void ASTVisitor.visitField(Field node)
           
 

Method parameters in edu.ksu.cis.projects.bogor.ast with type arguments of type Field
 void RecordDefinition.setFields(List<Field> newTypedIds)
          Sets the fields.
 

Constructor parameters in edu.ksu.cis.projects.bogor.ast with type arguments of type Field
RecordDefinition(boolean top, boolean throwable, String id, List<String> superIds, List<Field> fields)
          Constructor with super-id.
 

Uses of Field in edu.ksu.cis.projects.bogor.symboltable
 

Methods in edu.ksu.cis.projects.bogor.symboltable that return types with arguments of type Field
 Map<String,Field> SymbolTable.getFieldDefTable()
          Gets the field qualified name (String) to its definition (Field) mapping.