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

Packages that use CastExpression
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.formatter   
org.jmlspecs.eclipse.jdt.internal.esc2   
org.jmlspecs.jml4.ast   
org.jmlspecs.jml4.fspv   
org.jmlspecs.jml4.rac   
 

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

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

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

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

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

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type CastExpression
static void CastExpression.checkNeedForAssignedCast(BlockScope scope, TypeBinding expectedType, CastExpression rhs)
          Complain if assigned expression is cast, but not actually used as such, e.g.
static void CastExpression.checkNeedForCastCast(BlockScope scope, CastExpression enclosingCast)
          Complain if cast expression is cast, but not actually needed, int i = (int)(Integer) 12; Note that this (int) cast is however needed: Integer i = 0; char c = (char)((int) i);
 

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

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type CastExpression
 void ProblemReporter.typeCastError(CastExpression expression, TypeBinding leftType, TypeBinding rightType)
           
 void ProblemReporter.unnecessaryCast(CastExpression castExpression)
           
 void ProblemReporter.unsafeCast(CastExpression castExpression, Scope scope)
           
 

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

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

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

Methods in org.jmlspecs.eclipse.jdt.internal.esc2 with parameters of type CastExpression
 boolean PrintVisitor.visit(CastExpression castExpression, BlockScope scope)
          Deprecated.  
 

Uses of CastExpression in org.jmlspecs.jml4.ast
 

Subclasses of CastExpression in org.jmlspecs.jml4.ast
 class JmlCastExpression
           
 class JmlCastExpressionWithoutType
           
 

Uses of CastExpression in org.jmlspecs.jml4.fspv
 

Methods in org.jmlspecs.jml4.fspv with parameters of type CastExpression
 void TraceAstVisitor.endVisit(CastExpression castExpression, BlockScope scope)
           
 boolean TraceAstVisitor.visit(CastExpression castExpression, BlockScope scope)
           
 

Uses of CastExpression in org.jmlspecs.jml4.rac
 

Methods in org.jmlspecs.jml4.rac with parameters of type CastExpression
 void JavaAstVisitor.endVisit(CastExpression castExpression, BlockScope scope)
           
 void DefaultRacAstVisitor.endVisit(CastExpression castExpression, BlockScope scope)
           
 void AstDirtyBitsRetriever.endVisit(CastExpression castExpression, BlockScope scope)
           
 void AstDirtyBitsRestorer.endVisit(CastExpression castExpression, BlockScope scope)
           
 boolean JavaAstVisitor.visit(CastExpression castExpression, BlockScope scope)
          Expression that converts one type to the other type.
 boolean DefaultRacAstVisitor.visit(CastExpression castExpression, BlockScope scope)
           
 boolean AstDirtyBitsRetriever.visit(CastExpression castExpression, BlockScope scope)
           
 boolean AstDirtyBitsRestorer.visit(CastExpression castExpression, BlockScope scope)