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

Packages that use Assignment
org.eclipse.jdt.internal.codeassist.complete   
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.problem   
org.eclipse.jdt.internal.eval   
org.eclipse.jdt.internal.formatter   
 

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

Methods in org.eclipse.jdt.internal.codeassist.complete with parameters of type Assignment
 void CompletionNodeDetector.endVisit(Assignment assignment, BlockScope scope)
           
 boolean CompletionNodeDetector.visit(Assignment assignment, BlockScope scope)
           
 

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

Methods in org.eclipse.jdt.internal.compiler with parameters of type Assignment
 void ASTVisitor.endVisit(Assignment assignment, BlockScope scope)
           
 boolean ASTVisitor.visit(Assignment assignment, BlockScope scope)
           
 

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

Subclasses of Assignment in org.eclipse.jdt.internal.compiler.ast
 class CompoundAssignment
           
 class PostfixExpression
           
 class PrefixExpression
           
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type Assignment
 FlowInfo FieldReference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean isCompound)
           
abstract  FlowInfo Reference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean isCompound)
           
 FlowInfo SingleNameReference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean isCompound)
           
 FlowInfo QualifiedNameReference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean isCompound)
           
 FlowInfo ArrayReference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean compoundAssignment)
           
 FlowInfo ThisReference.analyseAssignment(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, Assignment assignment, boolean isCompound)
           
 void FieldReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
abstract  void Reference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void SingleNameReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void QualifiedNameReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void ArrayReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void ThisReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 

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

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type Assignment
 void ProblemReporter.assignmentHasNoEffect(Assignment location, char[] name)
           
 void ProblemReporter.possibleAccidentalBooleanAssignment(Assignment assignment)
           
 

Uses of Assignment in org.eclipse.jdt.internal.eval
 

Methods in org.eclipse.jdt.internal.eval with parameters of type Assignment
 void CodeSnippetSingleNameReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void CodeSnippetFieldReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
           
 void CodeSnippetQualifiedNameReference.generateAssignment(BlockScope currentScope, CodeStream codeStream, Assignment assignment, boolean valueRequired)
          Check and/or redirect the field access to the delegate receiver if any
 

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

Methods in org.eclipse.jdt.internal.formatter with parameters of type Assignment
 boolean CodeFormatterVisitor.visit(Assignment assignment, BlockScope scope)