Uses of Class
org.eclipse.jdt.internal.compiler.ast.FieldDeclaration

Packages that use FieldDeclaration
org.eclipse.jdt.internal.codeassist   
org.eclipse.jdt.internal.codeassist.complete   
org.eclipse.jdt.internal.codeassist.select   
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.lookup   
org.eclipse.jdt.internal.compiler.parser   
org.eclipse.jdt.internal.compiler.problem   
org.eclipse.jdt.internal.core.search.matching   
org.eclipse.jdt.internal.core.util   
org.eclipse.jdt.internal.formatter   
org.jmlspecs.eclipse.jdt.internal.esc2   
org.jmlspecs.jml4.ast   
org.jmlspecs.jml4.compiler   
org.jmlspecs.jml4.fspv   
org.jmlspecs.jml4.fspv.phases   
org.jmlspecs.jml4.lookup   
org.jmlspecs.jml4.nonnull   
org.jmlspecs.jml4.rac   
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.codeassist
 

Methods in org.eclipse.jdt.internal.codeassist with parameters of type FieldDeclaration
 void UnresolvedReferenceNameFinder.endVisit(FieldDeclaration fieldDeclaration, MethodScope methodScope)
           
 boolean UnresolvedReferenceNameFinder.visit(FieldDeclaration fieldDeclaration, MethodScope methodScope)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.codeassist.complete
 

Subclasses of FieldDeclaration in org.eclipse.jdt.internal.codeassist.complete
 class CompletionOnFieldName
           
 class CompletionOnFieldType
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.codeassist.select
 

Subclasses of FieldDeclaration in org.eclipse.jdt.internal.codeassist.select
 class SelectionOnFieldType
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.compiler
 

Fields in org.eclipse.jdt.internal.compiler declared as FieldDeclaration
 FieldDeclaration ISourceElementRequestor.FieldInfo.node
           
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type FieldDeclaration
 void ASTVisitor.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean ASTVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.compiler.ast
 

Subclasses of FieldDeclaration in org.eclipse.jdt.internal.compiler.ast
 class Initializer
           
 

Fields in org.eclipse.jdt.internal.compiler.ast declared as FieldDeclaration
 FieldDeclaration AllocationExpression.enumConstant
           
 FieldDeclaration[] TypeDeclaration.fields
           
 

Methods in org.eclipse.jdt.internal.compiler.ast that return FieldDeclaration
 FieldDeclaration TypeDeclaration.declarationOf(FieldBinding fieldBinding)
          Find the matching parse node, answers null if nothing found
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.compiler.lookup
 

Fields in org.eclipse.jdt.internal.compiler.lookup declared as FieldDeclaration
 FieldDeclaration FieldBinding.fieldDeclaration
           
 

Methods in org.eclipse.jdt.internal.compiler.lookup that return FieldDeclaration
 FieldDeclaration FieldBinding.sourceField()
           
 

Constructors in org.eclipse.jdt.internal.compiler.lookup with parameters of type FieldDeclaration
FieldBinding(FieldDeclaration field, TypeBinding type, int modifiers, ReferenceBinding declaringClass)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.compiler.parser
 

Fields in org.eclipse.jdt.internal.compiler.parser declared as FieldDeclaration
 FieldDeclaration RecoveredField.fieldDeclaration
           
 

Methods in org.eclipse.jdt.internal.compiler.parser that return FieldDeclaration
 FieldDeclaration RecoveredInitializer.updatedFieldDeclaration()
           
 FieldDeclaration RecoveredField.updatedFieldDeclaration()
           
 

Methods in org.eclipse.jdt.internal.compiler.parser with parameters of type FieldDeclaration
 RecoveredElement RecoveredUnit.add(FieldDeclaration fieldDeclaration, int bracketBalanceValue)
           
 RecoveredElement RecoveredType.add(FieldDeclaration fieldDeclaration, int bracketBalanceValue)
           
 RecoveredElement RecoveredMethod.add(FieldDeclaration fieldDeclaration, int bracketBalanceValue)
           
 RecoveredElement RecoveredInitializer.add(FieldDeclaration newFieldDeclaration, int bracketBalanceValue)
           
 RecoveredElement RecoveredElement.add(FieldDeclaration fieldDeclaration, int bracketBalanceValue)
           
 RecoveredElement RecoveredBlock.add(FieldDeclaration fieldDeclaration, int bracketBalanceValue)
           
 void Parser.parse(FieldDeclaration field, TypeDeclaration type, CompilationUnitDeclaration unit, char[] initializationSource)
           
 

Constructors in org.eclipse.jdt.internal.compiler.parser with parameters of type FieldDeclaration
RecoveredField(FieldDeclaration fieldDeclaration, RecoveredElement parent, int bracketBalance)
           
RecoveredField(FieldDeclaration fieldDeclaration, RecoveredElement parent, int bracketBalance, Parser parser)
           
RecoveredInitializer(FieldDeclaration fieldDeclaration, RecoveredElement parent, int bracketBalance)
           
RecoveredInitializer(FieldDeclaration fieldDeclaration, RecoveredElement parent, int bracketBalance, Parser parser)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.compiler.problem
 

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type FieldDeclaration
 void ProblemReporter.duplicateFieldInType(SourceTypeBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.duplicateModifierForField(ReferenceBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.enumConstantMustImplementAbstractMethod(AbstractMethodDeclaration method, FieldDeclaration field)
           
 void ProblemReporter.fieldHiding(FieldDeclaration fieldDecl, Binding hiddenVariable)
           
 void ProblemReporter.illegalModifierCombinationFinalVolatileForField(ReferenceBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.illegalModifierForAnnotationField(FieldDeclaration fieldDecl)
           
 void ProblemReporter.illegalModifierForEnumConstant(ReferenceBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.illegalModifierForField(ReferenceBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.illegalModifierForInterfaceField(FieldDeclaration fieldDecl)
           
 void ProblemReporter.illegalVisibilityModifierCombinationForField(ReferenceBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.initializerMustCompleteNormally(FieldDeclaration fieldDecl)
           
 void ProblemReporter.interfaceCannotHaveInitializers(SourceTypeBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.missingDeprecatedAnnotationForField(FieldDeclaration field)
           
 void ProblemReporter.modelFieldHaveNoInitializer(FieldDeclaration fieldDecl)
           
 void ProblemReporter.unexpectedStaticModifierForField(SourceTypeBinding type, FieldDeclaration fieldDecl)
           
 void ProblemReporter.unusedPrivateField(FieldDeclaration fieldDecl)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.core.search.matching
 

Methods in org.eclipse.jdt.internal.core.search.matching with parameters of type FieldDeclaration
 int PatternLocator.match(FieldDeclaration node, MatchingNodeSet nodeSet)
           
 int OrLocator.match(FieldDeclaration node, MatchingNodeSet nodeSet)
           
 int FieldLocator.match(FieldDeclaration node, MatchingNodeSet nodeSet)
           
 int ConstructorLocator.match(FieldDeclaration field, MatchingNodeSet nodeSet)
           
 int AndLocator.match(FieldDeclaration node, MatchingNodeSet nodeSet)
           
 boolean SuperTypeNamesCollector.TypeDeclarationVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean MatchLocatorParser.NoClassNoMethodDeclarationVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean MatchLocatorParser.ClassButNoMethodDeclarationVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 

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

Methods in org.eclipse.jdt.internal.core.util that return FieldDeclaration
 FieldDeclaration ASTNodeFinder.findField(IField fieldHandle)
           
 

Uses of FieldDeclaration in org.eclipse.jdt.internal.formatter
 

Subclasses of FieldDeclaration in org.eclipse.jdt.internal.formatter
static class CodeFormatterVisitor.MultiFieldDeclaration
           
 

Methods in org.eclipse.jdt.internal.formatter with parameters of type FieldDeclaration
 boolean CodeFormatterVisitor.visit(FieldDeclaration enumConstant, MethodScope scope)
           
 

Uses of FieldDeclaration in org.jmlspecs.eclipse.jdt.internal.esc2
 

Methods in org.jmlspecs.eclipse.jdt.internal.esc2 with parameters of type FieldDeclaration
 boolean PrintVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
          Deprecated.  
 

Uses of FieldDeclaration in org.jmlspecs.jml4.ast
 

Subclasses of FieldDeclaration in org.jmlspecs.jml4.ast
 class JmlFieldDeclaration
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.compiler
 

Methods in org.jmlspecs.jml4.compiler with parameters of type FieldDeclaration
 boolean ReferenceCounterVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.fspv
 

Methods in org.jmlspecs.jml4.fspv with parameters of type FieldDeclaration
 void TraceAstVisitor.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean TraceAstVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.fspv.phases
 

Methods in org.jmlspecs.jml4.fspv.phases with parameters of type FieldDeclaration
 void TheoryTranslation.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean TheoryTranslation.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.lookup
 

Methods in org.jmlspecs.jml4.lookup that return FieldDeclaration
static FieldDeclaration JmlBinaryLookup.getDeclaration(FieldBinding binding, BinaryTypeBinding binaryTypeBinding)
           
 

Methods in org.jmlspecs.jml4.lookup with parameters of type FieldDeclaration
static void JmlBinaryLookup.mergeFields(FieldBinding[] sourceFields, FieldDeclaration[] specFields)
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.nonnull
 

Methods in org.jmlspecs.jml4.nonnull that return FieldDeclaration
static FieldDeclaration Nullity.getFieldDeclaration(FieldBinding fieldBinding)
           
 

Uses of FieldDeclaration in org.jmlspecs.jml4.rac
 

Subclasses of FieldDeclaration in org.jmlspecs.jml4.rac
 class RacFieldDeclaration
          A fake method declaration to store runtime assertion checking method in the source code format.
 

Methods in org.jmlspecs.jml4.rac that return types with arguments of type FieldDeclaration
 java.util.List<FieldDeclaration> MethodSpecificationTranslator.newFields()
          Returns a list of new field declarations generated during the last translation that need to be added to the class or interface under translation.
 java.util.List<FieldDeclaration> MethodDeclarationTranslator.newFields()
          Returns a list of new field declarations generated during the last translation that need to be added to the class or interface under translation.
 java.util.List<FieldDeclaration> ConstraintTranslator.newFields()
          Returns a list of new field declarations generated during the last translation that need to be added to the class or interface under translation.
 

Methods in org.jmlspecs.jml4.rac with parameters of type FieldDeclaration
 void JavaAstVisitor.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 void DefaultRacAstVisitor.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 void AstDirtyBitsRetriever.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 void AstDirtyBitsRestorer.endVisit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
static boolean RacTranslator.isGhostField(FieldDeclaration field)
          Is the given field a JML ghost field? A field is a JML ghost field if it has a Ghost annotation.
static boolean RacTranslator.isModelField(FieldDeclaration field)
          Is the given field a JML model field? A field is a JML model field if it has a Model annotation.
 boolean JavaAstVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
          Examples include:
 boolean DefaultRacAstVisitor.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean AstDirtyBitsRetriever.visit(FieldDeclaration fieldDeclaration, MethodScope scope)
           
 boolean AstDirtyBitsRestorer.visit(FieldDeclaration fieldDeclaration, MethodScope scope)