1 11 12 package org.eclipse.jdt.core.dom; 13 14 51 public abstract class Expression extends ASTNode { 52 53 61 Expression(AST ast) { 62 super(ast); 63 } 64 65 93 public final Object resolveConstantExpressionValue() { 94 return this.ast.getBindingResolver().resolveConstantExpressionValue(this); 95 } 96 97 107 public final ITypeBinding resolveTypeBinding() { 108 return this.ast.getBindingResolver().resolveExpressionType(this); 109 } 110 111 121 public final boolean resolveBoxing() { 122 return this.ast.getBindingResolver().resolveBoxing(this); 123 } 124 125 136 public final boolean resolveUnboxing() { 137 return this.ast.getBindingResolver().resolveUnboxing(this); 138 } 139 } 140 141 | Popular Tags |