Uses of Class
net.sf.rej.java.Field

Packages that use Field
net.sf.rej.files Provides file access related functionality. 
net.sf.rej.gui Constains classes for the reJ graphical user interface. 
net.sf.rej.gui.action Contains reJ GUI actions. 
net.sf.rej.gui.dialog Contains the dialog classes of the reJ graphical user interface 
net.sf.rej.gui.editor.iteration Contains classes that iterate through the project, going through every class with the purpose of finding definitions, references and doing refactoring 
net.sf.rej.gui.editor.row Contains various container classes for different "types" of lines in the reJ bytecode editor. 
net.sf.rej.gui.structure Provides components for a JTree which models the structure of a class file. 
net.sf.rej.java Contains core bytecode parsing and construction related classes. 
 

Uses of Field in net.sf.rej.files
 

Methods in net.sf.rej.files that return Field
 Field FieldLocator.getField()
           
 

Constructors in net.sf.rej.files with parameters of type Field
FieldLocator(ClassLocator cl, Field field)
           
 

Uses of Field in net.sf.rej.gui
 

Methods in net.sf.rej.gui that return Field
 Field Link.getField()
           
 Field IterationContext.getField()
           
 

Methods in net.sf.rej.gui with parameters of type Field
 void EditorFacade.modifyField(ConstantPool pool, Field field, java.lang.String name, Descriptor desc, AccessFlags flags)
           
 void IteratorAgentAdapter.processField(IterationContext ic, Field field)
           
 void IteratorAgent.processField(IterationContext ic, Field field)
           
 void DefaultMatcher.processField(IterationContext ic, Field field)
           
 void Link.setField(Field field)
           
 void IterationContext.setField(Field field)
           
 

Uses of Field in net.sf.rej.gui.action
 

Constructors in net.sf.rej.gui.action with parameters of type Field
ModifyFieldAction(ConstantPool pool, Field field, java.lang.String name, Descriptor desc, AccessFlags accessFlags)
           
RemoveFieldAction(ClassFile classFile, Field field)
           
RenameFieldAction(ConstantPool pool, Field field, java.lang.String name)
           
 

Uses of Field in net.sf.rej.gui.dialog
 

Methods in net.sf.rej.gui.dialog that return Field
 Field FieldChooseDialog.getSelectedField()
           
 

Uses of Field in net.sf.rej.gui.editor.iteration
 

Methods in net.sf.rej.gui.editor.iteration with parameters of type Field
 void RefactoringIterator.processField(IterationContext ic, Field field)
           
 void FindFieldRefs.processField(IterationContext sc, Field field)
           
 void FindFieldDefinition.processField(IterationContext sc, Field field)
           
 

Uses of Field in net.sf.rej.gui.editor.row
 

Methods in net.sf.rej.gui.editor.row that return Field
 Field FieldDefRow.getField()
           
 

Constructors in net.sf.rej.gui.editor.row with parameters of type Field
FieldDefRow(ClassFile cf, Field field)
           
 

Uses of Field in net.sf.rej.gui.structure
 

Methods in net.sf.rej.gui.structure that return Field
 Field FieldNode.getField()
           
 

Constructors in net.sf.rej.gui.structure with parameters of type Field
FieldNode(ClassFile cf, Field field)
           
 

Uses of Field in net.sf.rej.java
 

Methods in net.sf.rej.java that return Field
 Field FieldFactory.createField(ByteParser parser, ConstantPool pool)
           
 Field FieldFactory.createField(ClassFile cf, AccessFlags accessFlags, int nameIndex, int descIndex)
           
 

Methods in net.sf.rej.java that return types with arguments of type Field
 java.util.List<Field> ClassFile.getFields()
          Returns a read-only list of the fields in this class.
 

Methods in net.sf.rej.java with parameters of type Field
 void ClassFile.add(Field field)
          Adds a field to this class.
 void ClassFile.remove(Field field)
          Removes the given field from this class.
 

Method parameters in net.sf.rej.java with type arguments of type Field
 void ClassFile.setFields(java.util.List<Field> fields)
          Sets all the fields for this class.