Annotation |
ImportRewrite.addAnnotation(IAnnotationBinding annotation,
AST ast,
ImportRewrite.ImportRewriteContext context) |
Adds the necessary imports for the given annotation binding to the rewriter's record
and returns an Annotation that can be used in the code.
|
java.lang.String |
ImportRewrite.addImport(java.lang.String qualifiedTypeName,
ImportRewrite.ImportRewriteContext context) |
Adds a new import to the rewriter's record and returns a type reference that can be used
in the code.
|
Type |
ImportRewrite.addImport(ITypeBinding binding,
AST ast,
ImportRewrite.ImportRewriteContext context) |
Adds a new import to the rewriter's record and returns a Type that can be used
in the code.
|
Type |
ImportRewrite.addImport(ITypeBinding binding,
AST ast,
ImportRewrite.ImportRewriteContext context,
ImportRewrite.TypeLocation location) |
Adds a new import to the rewriter's record and returns a Type that can be used
in the code.
|
java.lang.String |
ImportRewrite.addImport(ITypeBinding binding,
ImportRewrite.ImportRewriteContext context) |
Adds a new import to the rewriter's record and returns a type reference that can be used
in the code.
|
Type |
ImportRewrite.addImportFromSignature(java.lang.String typeSig,
AST ast,
ImportRewrite.ImportRewriteContext context) |
Adds a new import to the rewriter's record and returns a Type node that can be used
in the code as a reference to the type.
|
java.lang.String |
ImportRewrite.addStaticImport(java.lang.String declaringTypeName,
java.lang.String simpleName,
boolean isField,
ImportRewrite.ImportRewriteContext context) |
Adds a new static import to the rewriter's record and returns a name - single member name if
import is successful, else qualified name.
|
java.lang.String |
ImportRewrite.addStaticImport(IBinding binding,
ImportRewrite.ImportRewriteContext context) |
Adds a new static import to the rewriter's record and returns a name - single member name if
import is successful, else qualified name.
|