1 11 12 package org.eclipse.jdt.core.dom; 13 14 import org.eclipse.jdt.core.WorkingCopyOwner; 15 import org.eclipse.jdt.internal.compiler.lookup.BlockScope; 16 import org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope; 17 import org.eclipse.jdt.internal.compiler.lookup.ElementValuePair; 18 import org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment; 19 20 31 class BindingResolver { 32 33 36 BindingResolver() { 37 } 39 40 79 ASTNode findDeclaringNode(IBinding binding) { 80 return null; 81 } 82 83 94 ASTNode findDeclaringNode(String bindingKey) { 95 return null; 96 } 97 98 109 ASTNode findDeclaringNode(IAnnotationBinding instance) { 110 return null; 111 } 112 113 124 org.eclipse.jdt.internal.compiler.ast.ASTNode getCorrespondingNode(ASTNode currentNode) { 125 return null; 126 } 127 128 138 IMethodBinding getMethodBinding(org.eclipse.jdt.internal.compiler.lookup.MethodBinding methodBinding) { 139 return null; 140 } 141 142 152 IMemberValuePairBinding getMemberValuePairBinding(ElementValuePair valuePair) { 153 return null; 154 } 155 156 166 IPackageBinding getPackageBinding(org.eclipse.jdt.internal.compiler.lookup.PackageBinding packageBinding) { 167 return null; 168 } 169 170 180 ITypeBinding getTypeBinding(org.eclipse.jdt.internal.compiler.lookup.TypeBinding referenceBinding) { 181 return null; 182 } 183 184 185 196 ITypeBinding getTypeBinding(VariableDeclaration variableDeclaration) { 197 return null; 198 } 199 200 211 ITypeBinding getTypeBinding(Type type) { 212 return null; 213 } 214 215 226 ITypeBinding getTypeBinding(RecoveredTypeBinding recoveredTypeBinding, int dimensions) { 227 return null; 228 } 229 230 240 IVariableBinding getVariableBinding(org.eclipse.jdt.internal.compiler.lookup.VariableBinding binding) { 241 return null; 242 } 243 244 252 public WorkingCopyOwner getWorkingCopyOwner() { 253 return null; 254 } 255 256 266 IAnnotationBinding getAnnotationInstance(org.eclipse.jdt.internal.compiler.lookup.AnnotationBinding instance) { 267 return null; 268 } 269 270 boolean isResolvedTypeInferredFromExpectedType(MethodInvocation methodInvocation) { 271 return false; 272 } 273 274 boolean isResolvedTypeInferredFromExpectedType(SuperMethodInvocation methodInvocation) { 275 return false; 276 } 277 278 284 LookupEnvironment lookupEnvironment() { 285 return null; 286 } 287 288 296 void recordScope(ASTNode astNode, BlockScope blockScope) { 297 } 299 300 310 boolean resolveBoxing(Expression expression) { 311 return false; 312 } 313 314 325 boolean resolveUnboxing(Expression expression) { 326 return false; 327 } 328 329 357 Object resolveConstantExpressionValue(Expression expression) { 358 return null; 359 } 360 361 379 IMethodBinding resolveConstructor(ClassInstanceCreation expression) { 380 return null; 381 } 382 383 401 IMethodBinding resolveConstructor(ConstructorInvocation expression) { 402 return null; 403 } 404 422 IMethodBinding resolveConstructor(EnumConstantDeclaration enumConstantDeclaration) { 423 return null; 424 } 425 443 IMethodBinding resolveConstructor(SuperConstructorInvocation expression) { 444 return null; 445 } 446 464 ITypeBinding resolveExpressionType(Expression expression) { 465 return null; 466 } 467 468 485 IVariableBinding resolveField(FieldAccess fieldAccess) { 486 return null; 487 } 488 489 506 IVariableBinding resolveField(SuperFieldAccess fieldAccess) { 507 return null; 508 } 509 510 527 IBinding resolveImport(ImportDeclaration importDeclaration) { 528 return null; 529 } 530 531 550 IMethodBinding resolveMember(AnnotationTypeMemberDeclaration member) { 551 return null; 552 } 553 554 571 IMethodBinding resolveMethod(MethodDeclaration method) { 572 return null; 573 } 574 575 592 IMethodBinding resolveMethod(MethodInvocation method) { 593 return null; 594 } 595 596 613 IMethodBinding resolveMethod(SuperMethodInvocation method) { 614 return null; 615 } 616 617 633 IBinding resolveName(Name name) { 634 return null; 635 } 636 637 652 IPackageBinding resolvePackage(PackageDeclaration pkg) { 653 return null; 654 } 655 656 673 IBinding resolveReference(MemberRef ref) { 674 return null; 675 } 676 677 694 IMemberValuePairBinding resolveMemberValuePair(MemberValuePair memberValuePair) { 695 return null; 696 } 697 698 715 IBinding resolveReference(MethodRef ref) { 716 return null; 717 } 718 719 738 ITypeBinding resolveType(AnnotationTypeDeclaration type) { 739 return null; 740 } 741 742 760 ITypeBinding resolveType(AnonymousClassDeclaration type) { 761 return null; 762 } 763 764 783 ITypeBinding resolveType(EnumDeclaration type) { 784 return null; 785 } 786 787 804 ITypeBinding resolveType(Type type) { 805 return null; 806 } 807 808 827 ITypeBinding resolveType(TypeDeclaration type) { 828 return null; 829 } 830 831 850 ITypeBinding resolveTypeParameter(TypeParameter typeParameter) { 851 return null; 852 } 853 854 871 IVariableBinding resolveVariable(EnumConstantDeclaration enumConstant) { 872 return null; 873 } 874 875 895 IVariableBinding resolveVariable(VariableDeclaration variable) { 896 return null; 897 } 898 899 916 ITypeBinding resolveWellKnownType(String name) { 917 return null; 918 } 919 920 935 IAnnotationBinding resolveAnnotation(Annotation annotation) { 936 return null; 937 } 938 939 958 ITypeBinding resolveArrayType(ITypeBinding typeBinding, int dimensions) { 959 return null; 960 } 961 962 968 public CompilationUnitScope scope() { 969 return null; 970 } 971 972 983 void store(ASTNode newNode, org.eclipse.jdt.internal.compiler.ast.ASTNode oldASTNode) { 984 } 986 987 998 void updateKey(ASTNode node, ASTNode newNode) { 999 } 1001} 1002 | Popular Tags |