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   
 

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)