Uses of Interface
org.eclipse.jdt.core.IField

Packages that use IField
org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program. 
org.eclipse.jdt.internal.codeassist.impl   
org.eclipse.jdt.internal.core   
org.eclipse.jdt.internal.core.util   
org.jmlspecs.eclipse.jdt.ui   
 

Uses of IField in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IField
 IField IType.createField(java.lang.String contents, IJavaElement sibling, boolean force, org.eclipse.core.runtime.IProgressMonitor monitor)
          Creates and returns a field in this type with the given contents.
 IField IType.getField(java.lang.String name)
          Returns the field with the specified name in this type (for example, "bar").
 IField[] IType.getFields()
          Returns the fields declared by this type.
 

Uses of IField in org.eclipse.jdt.internal.codeassist.impl
 

Classes in org.eclipse.jdt.internal.codeassist.impl that implement IField
 class AssistSourceField
           
 

Methods in org.eclipse.jdt.internal.codeassist.impl that return IField
 IField AssistSourceType.getField(java.lang.String fieldName)
           
 

Uses of IField in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement IField
 class ResolvedBinaryField
          Handle representing a binary field that is resolved.
 class ResolvedSourceField
          Handle representing a source field that is resolved.
 class SourceField
           
 

Methods in org.eclipse.jdt.internal.core that return IField
 IField SourceType.createField(java.lang.String contents, IJavaElement sibling, boolean force, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 IField BinaryType.createField(java.lang.String contents, IJavaElement sibling, boolean force, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 IField SourceType.getField(java.lang.String fieldName)
           
 IField BinaryType.getField(java.lang.String fieldName)
           
 IField[] SourceType.getFields()
           
 IField[] BinaryType.getFields()
           
 IField[] JavaElementRequestor.getFields()
           
 

Methods in org.eclipse.jdt.internal.core with parameters of type IField
 void IJavaElementRequestor.acceptField(IField field)
           
 void JavaElementRequestor.acceptField(IField field)
           
 

Uses of IField in org.eclipse.jdt.internal.core.util
 

Methods in org.eclipse.jdt.internal.core.util with parameters of type IField
 FieldDeclaration ASTNodeFinder.findField(IField fieldHandle)
           
 

Uses of IField in org.jmlspecs.eclipse.jdt.ui
 

Methods in org.jmlspecs.eclipse.jdt.ui with parameters of type IField
 void NewJmlSpecCreationPage.insertField(IField f, java.lang.StringBuffer s, java.lang.String indent, java.lang.String eol)