Uses of Interface
org.eclipse.jdt.core.ICompilationUnit
Package
Description
This package contains Eclipse extensions to some of the Sun annotation processing APIs.
The Java model is the set of classes that model the
objects associated with creating, editing, and building a Java program.
This package contains compiler associated infrastructure APIs.
The Java DOM/AST is the set of classes that model the source code of a Java program
as a structured document.
The Java DOM/AST rewrite is the set of classes that are used to make changes to an existing DOM/AST tree.
Application programming interface for the JDT core manipulation plug-in class.
Application programming interface for Java-specified refactoring framework facilities.
Application programming interface to access Java refactorings provided by JDT.
Provides support for searching the workspace Java
elements that match a particular description.
Provides a set of tools and utilities for manipulating .class files and Java model elements.
Application programming interfaces to implement wizards to create new JUnit testcases.
Application programming interfaces for interaction
with the Eclipse Java User Interface.
Application programming interfaces for Eclipse Java User Interface specific
actions.
Application programming interfaces for code clean up.
Application programming interfaces for rename refactorings.
Application programming interfaces for interaction
with the Eclipse Java User Interface.
Application programming interfaces for correction proposals.
Application programming interfaces for interaction
with the Eclipse Java User Interface wizards.
-
Uses of ICompilationUnit in org.eclipse.jdt.apt.core.env
Modifier and TypeMethodDescriptionEnvironmentFactory.getEnvironment
(ICompilationUnit compilationUnit, IJavaProject javaProject) Return a processor environment for use outside of building or reconciling. -
Uses of ICompilationUnit in org.eclipse.jdt.core
Modifier and TypeFieldDescriptionprotected ICompilationUnit
CorrectionEngine.compilationUnit
This field is not intended to be used by client.Modifier and TypeMethodDescriptionIClassFile.becomeWorkingCopy
(IProblemRequestor problemRequestor, WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) Deprecated.IPackageFragment.createCompilationUnit
(String name, String contents, boolean force, org.eclipse.core.runtime.IProgressMonitor monitor) Creates and returns a compilation unit in this package fragment with the specified name and contents.static ICompilationUnit
JavaCore.createCompilationUnitFrom
(org.eclipse.core.resources.IFile file) Creates and returns a compilation unit element for the given source file (i.e. a file with one of theJava-like extensions
).ICompilationUnit.findWorkingCopy
(WorkingCopyOwner owner) Finds the working copy for this compilation unit, given aWorkingCopyOwner
.IMember.getCompilationUnit()
Returns the compilation unit in which this member is declared, ornull
if this member is not declared in a compilation unit (for example, a binary type).IPackageFragment.getCompilationUnit
(String name) Returns the compilation unit with the specified name in this package (for example,"Object.java"
).IPackageFragment.getCompilationUnits()
Returns all of the compilation units in this package fragment.IPackageFragment.getCompilationUnits
(WorkingCopyOwner owner) Returns all of the compilation units in this package fragment that are in working copy mode and that have the given owner.ICompilationUnit.getPrimary()
Returns the primary compilation unit (whose owner is the primary owner) this working copy was created from, or this compilation unit if this a primary compilation unit.static ICompilationUnit[]
JavaCore.getWorkingCopies
(WorkingCopyOwner owner) Returns the working copies that have the given owner.ICompilationUnit.getWorkingCopy
(org.eclipse.core.runtime.IProgressMonitor monitor) Returns a new working copy of this compilation unit if it is a primary compilation unit, or this compilation unit if it is already a non-primary working copy.ICompilationUnit.getWorkingCopy
(WorkingCopyOwner owner, IProblemRequestor problemRequestor, org.eclipse.core.runtime.IProgressMonitor monitor) Deprecated.ITypeRoot.getWorkingCopy
(WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) Returns a shared working copy on this compilation unit or class file using the given working copy owner to create the buffer.final ICompilationUnit
WorkingCopyOwner.newWorkingCopy
(String name, IClasspathEntry[] classpath, org.eclipse.core.runtime.IProgressMonitor monitor) Returns a new working copy with the given name using this working copy owner to create its buffer.final ICompilationUnit
WorkingCopyOwner.newWorkingCopy
(String name, IClasspathEntry[] classpath, IProblemRequestor problemRequestor, org.eclipse.core.runtime.IProgressMonitor monitor) Deprecated.Modifier and TypeMethodDescriptionvoid
CorrectionEngine.computeCorrections
(org.eclipse.core.resources.IMarker marker, ICompilationUnit targetUnit, int positionOffset, ICorrectionRequestor requestor) Performs code correction for the given marker, reporting results to the given correction requestor.void
CorrectionEngine.computeCorrections
(IProblem problem, ICompilationUnit targetUnit, ICorrectionRequestor requestor) Performs code correction for the given IProblem, reporting results to the given correction requestor.WorkingCopyOwner.createBuffer
(ICompilationUnit workingCopy) Creates a buffer for the given working copy.WorkingCopyOwner.getProblemRequestor
(ICompilationUnit workingCopy) Returns the problem requestor used by a working copy of this working copy owner.IType.newSupertypeHierarchy
(ICompilationUnit[] workingCopies, org.eclipse.core.runtime.IProgressMonitor monitor) Creates and returns a type hierarchy for this type containing this type and all of its supertypes, considering types in the given working copies.IType.newTypeHierarchy
(ICompilationUnit[] workingCopies, org.eclipse.core.runtime.IProgressMonitor monitor) Creates and returns a type hierarchy for this type containing this type, all of its supertypes, and all its subtypes in the workspace, considering types in the given working copies. -
Uses of ICompilationUnit in org.eclipse.jdt.core.compiler
Modifier and TypeMethodDescriptionReconcileContext.getWorkingCopy()
Returns the working copy this context refers to. -
Uses of ICompilationUnit in org.eclipse.jdt.core.dom
Modifier and TypeMethodDescriptionvoid
ASTRequestor.acceptAST
(ICompilationUnit source, CompilationUnit ast) Accepts an AST corresponding to the compilation unit.void
ASTParser.createASTs
(ICompilationUnit[] compilationUnits, String[] bindingKeys, ASTRequestor requestor, org.eclipse.core.runtime.IProgressMonitor monitor) Creates ASTs for a batch of compilation units.static CompilationUnit
AST.parseCompilationUnit
(ICompilationUnit unit, boolean resolveBindings) Deprecated.UseASTParser
instead.void
ASTParser.setSource
(ICompilationUnit source) Sets the source code to be parsed. -
Uses of ICompilationUnit in org.eclipse.jdt.core.dom.rewrite
Modifier and TypeMethodDescriptionImportRewrite.getCompilationUnit()
The compilation unit for which this import rewrite was created for.Modifier and TypeMethodDescriptionstatic ImportRewrite
ImportRewrite.create
(ICompilationUnit cu, boolean restoreExistingImports) Creates anImportRewrite
from anICompilationUnit
. -
Uses of ICompilationUnit in org.eclipse.jdt.core.manipulation
Modifier and TypeMethodDescriptionCleanUpContextCore.getCompilationUnit()
Deprecated, for removal: This API element is subject to removal in a future version.The compilation unit to clean up.CUCorrectionProposalCore.getCompilationUnit()
The compilation unit on which the change works.Modifier and TypeMethodDescriptionstatic ImportRewrite
CodeStyleConfiguration.createImportRewrite
(ICompilationUnit cu, boolean restoreExistingImports) Returns aImportRewrite
usingImportRewrite.create(ICompilationUnit, boolean)
and configures the rewriter with the settings as specified in the JDT UI preferences.static String
CodeGeneration.getCompilationUnitContent
(ICompilationUnit cu, String typeComment, String typeContent, String lineDelimiter) Returns the content for a new compilation unit using the 'new Java file' code template.static String
CodeGeneration.getCompilationUnitContent
(ICompilationUnit cu, String fileComment, String typeComment, String typeContent, String lineDelimiter) Returns the content for a new compilation unit using the 'new Java file' code template.static String
CodeGeneration.getFieldComment
(ICompilationUnit cu, String typeName, String fieldName, String lineDelimiter) Returns the content for a new field comment using the 'field comment' code template.static String
CodeGeneration.getFileComment
(ICompilationUnit cu, String lineDelimiter) Returns the content for a new file comment using the 'file comment' code template.static String
CodeGeneration.getGetterComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String fieldType, String bareFieldName, String lineDelimiter) Returns the comment for a getter method using the getter comment template.static String
CodeGeneration.getGetterMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String lineDelimiter) Returns the content of body for a getter method using the getter method body template.static String
CodeGeneration.getMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, boolean isConstructor, boolean useAlternativeMethodBody, String bodyStatement, String lineDelimiter) Returns the content of the body for a method or constructor using the method body templates.static String
CodeGeneration.getMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, boolean isConstructor, String bodyStatement, String lineDelimiter) Returns the content of the body for a method or constructor using the method body templates.static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String[] paramNames, String[] excTypeSig, String retTypeSig, String[] typeParameterNames, IMethod overridden, String lineDelimiter) Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String[] paramNames, String[] excTypeSig, String retTypeSig, IMethod overridden, String lineDelimiter) Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, MethodDeclaration decl, boolean isDeprecated, String overriddenMethodName, String overriddenMethodDeclaringTypeName, String[] overriddenMethodParameterTypeNames, String lineDelimiter) Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, MethodDeclaration decl, IMethodBinding overridden, String lineDelimiter) Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getModuleComment
(ICompilationUnit cu, String moduleName, String[] providesNames, String[] usesNames, String lineDelimiter) Returns the comment for a module based on code templatesstatic String
CodeGeneration.getModuleComment
(ICompilationUnit cu, IModuleDescription desc, String lineDelimiter) Returns the comment for a module based on code templatesstatic String
CodeGeneration.getSetterComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String fieldType, String paramName, String bareFieldName, String lineDelimiter) Returns the comment for a setter method using the setter method body template.static String
CodeGeneration.getSetterMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String paramName, String lineDelimiter) Returns the content of body for a setter method using the setter method body template.static String
CodeGeneration.getTypeBody
(String typeKind, ICompilationUnit cu, String typeName, String lineDelim) Returns the content of a new new type body using the 'type body' code templates.static String
CodeGeneration.getTypeComment
(ICompilationUnit cu, String typeQualifiedName, String lineDelimiter) Returns the content for a new type comment using the 'type comment' code template.static String
CodeGeneration.getTypeComment
(ICompilationUnit cu, String typeQualifiedName, String[] typeParameterNames, String lineDelimiter) Returns the content for a new type comment using the 'type comment' code template.static String
CodeGeneration.getTypeComment
(ICompilationUnit cu, String typeQualifiedName, String[] typeParameterNames, String[] params, String lineDelimiter) Returns the content for a new type comment using the 'type comment' code template.ModifierConstructorDescriptionCleanUpContextCore
(ICompilationUnit unit, CompilationUnit ast) Deprecated, for removal: This API element is subject to removal in a future version.Creates a new clean up context.protected
CUCorrectionProposalCore
(String name, ICompilationUnit cu, int relevance) Constructs a correction proposal working on a compilation unit.CUCorrectionProposalCore
(String name, ICompilationUnit cu, org.eclipse.ltk.core.refactoring.TextChange change, int relevance) Constructs a correction proposal working on a compilation unit with a given text change.CUCorrectionProposalCore
(ICUCorrectionProposal proposal, String name, ICompilationUnit cu, org.eclipse.ltk.core.refactoring.TextChange change, int relevance) Constructs a correction proposal working on a compilation unit with a given text change.OrganizeImportsOperation
(ICompilationUnit cu, CompilationUnit astRoot, boolean ignoreLowerCaseNames, boolean save, boolean allowSyntaxErrors, OrganizeImportsOperation.IChooseImportQuery chooseImportQuery) Creates a new OrganizeImportsOperation operation.OrganizeImportsOperation
(ICompilationUnit cu, CompilationUnit astRoot, boolean ignoreLowerCaseNames, boolean save, boolean allowSyntaxErrors, OrganizeImportsOperation.IChooseImportQuery chooseImportQuery, boolean restoreExistingImports) Creates a new OrganizeImportsOperation operation. -
Uses of ICompilationUnit in org.eclipse.jdt.core.refactoring
Modifier and TypeMethodDescriptionCompilationUnitChange.getCompilationUnit()
Returns the compilation unit this change works on.ModifierConstructorDescriptionCompilationUnitChange
(String name, ICompilationUnit cunit) Creates a newCompilationUnitChange
. -
Uses of ICompilationUnit in org.eclipse.jdt.core.refactoring.descriptors
Modifier and TypeMethodDescriptionvoid
RenameLocalVariableDescriptor.setCompilationUnit
(ICompilationUnit unit) Deprecated.Sets the compilation unit which contains the local variable.void
MoveDescriptor.setMoveResources
(org.eclipse.core.resources.IFile[] files, org.eclipse.core.resources.IFolder[] folders, ICompilationUnit[] units) Sets the resources and compilation units to move. -
Uses of ICompilationUnit in org.eclipse.jdt.core.search
ModifierConstructorDescriptionSearchEngine
(ICompilationUnit[] workingCopies) Creates a new search engine with a list of working copies that will take precedence over their original compilation units in the subsequent search operations. -
Uses of ICompilationUnit in org.eclipse.jdt.core.util
Modifier and TypeMethodDescriptionstatic void
CompilationUnitSorter.sort
(int level, ICompilationUnit compilationUnit, int[] positions, Comparator comparator, int options, org.eclipse.core.runtime.IProgressMonitor monitor) Reorders the declarations in the given compilation unit according to the specified AST level.static void
CompilationUnitSorter.sort
(ICompilationUnit compilationUnit, int[] positions, Comparator comparator, int options, org.eclipse.core.runtime.IProgressMonitor monitor) Deprecated.Clients should port their code to use the new JLS3 AST API and callCompilationUnitSorter.sort(AST.JLS3, compilationUnit, positions, comparator, options, monitor)
instead of using this method. -
Uses of ICompilationUnit in org.eclipse.jdt.junit.wizards
Modifier and TypeMethodDescriptionprotected String
NewTestSuiteWizardPage.constructCUContent
(ICompilationUnit cu, String typeContent, String lineDelimiter) -
Uses of ICompilationUnit in org.eclipse.jdt.ui
Modifier and TypeMethodDescriptionIWorkingCopyManager.getWorkingCopy
(org.eclipse.ui.IEditorInput input) Returns the working copy remembered for the compilation unit encoded in the given editor input.Modifier and TypeMethodDescriptionstatic ImportRewrite
CodeStyleConfiguration.createImportRewrite
(ICompilationUnit cu, boolean restoreExistingImports) Returns aImportRewrite
usingImportRewrite.create(ICompilationUnit, boolean)
and configures the rewriter with the settings as specified in the JDT UI preferences.static String
CodeGeneration.getCompilationUnitContent
(ICompilationUnit cu, String typeComment, String typeContent, String lineDelimiter) Deprecated.Returns the content for a new compilation unit using the 'new Java file' code template.static String
CodeGeneration.getCompilationUnitContent
(ICompilationUnit cu, String fileComment, String typeComment, String typeContent, String lineDelimiter) Deprecated.Returns the content for a new compilation unit using the 'new Java file' code template.static void
JavaElementLabels.getCompilationUnitLabel
(ICompilationUnit cu, long flags, StringBuffer buf) Appends the label for a compilation unit to aStringBuffer
.static void
JavaElementLabels.getCompilationUnitLabel
(ICompilationUnit cu, long flags, org.eclipse.jface.viewers.StyledString result) Appends the label for a compilation unit to aStyledString
.static String
CodeGeneration.getFieldComment
(ICompilationUnit cu, String typeName, String fieldName, String lineDelimiter) Deprecated.Returns the content for a new field comment using the 'field comment' code template.static String
CodeGeneration.getFileComment
(ICompilationUnit cu, String lineDelimiter) Deprecated.Returns the content for a new file comment using the 'file comment' code template.static String
CodeGeneration.getGetterComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String fieldType, String bareFieldName, String lineDelimiter) Deprecated.Returns the comment for a getter method using the getter comment template.static String
CodeGeneration.getGetterMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String lineDelimiter) Deprecated.Returns the content of body for a getter method using the getter method body template.static String
CodeGeneration.getMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, boolean isConstructor, String bodyStatement, String lineDelimiter) Deprecated.Returns the content of the body for a method or constructor using the method body templates.static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String[] paramNames, String[] excTypeSig, String retTypeSig, String[] typeParameterNames, IMethod overridden, String lineDelimiter) Deprecated.Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String[] paramNames, String[] excTypeSig, String retTypeSig, IMethod overridden, String lineDelimiter) Deprecated.Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, MethodDeclaration decl, boolean isDeprecated, String overriddenMethodName, String overriddenMethodDeclaringTypeName, String[] overriddenMethodParameterTypeNames, String lineDelimiter) Deprecated.Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getMethodComment
(ICompilationUnit cu, String declaringTypeName, MethodDeclaration decl, IMethodBinding overridden, String lineDelimiter) Deprecated.Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).static String
CodeGeneration.getSetterComment
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String fieldType, String paramName, String bareFieldName, String lineDelimiter) Deprecated.Returns the comment for a setter method using the setter method body template.static String
CodeGeneration.getSetterMethodBodyContent
(ICompilationUnit cu, String declaringTypeName, String methodName, String fieldName, String paramName, String lineDelimiter) Deprecated.Returns the content of body for a setter method using the setter method body template.static String
CodeGeneration.getTypeBody
(String typeKind, ICompilationUnit cu, String typeName, String lineDelim) Deprecated.Returns the content of a new new type body using the 'type body' code templates.static String
CodeGeneration.getTypeComment
(ICompilationUnit cu, String typeQualifiedName, String lineDelimiter) Deprecated.Returns the content for a new type comment using the 'type comment' code template.static String
CodeGeneration.getTypeComment
(ICompilationUnit cu, String typeQualifiedName, String[] typeParameterNames, String lineDelimiter) Deprecated.Returns the content for a new type comment using the 'type comment' code template.void
IWorkingCopyManagerExtension.setWorkingCopy
(org.eclipse.ui.IEditorInput input, ICompilationUnit workingCopy) Sets the given working copy for the given editor input. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.actions
Modifier and TypeMethodDescriptionvoid
ExternalizeStringsAction.run
(ICompilationUnit unit) Note: this method is for internal use only.void
OrganizeImportsAction.run
(ICompilationUnit cu) Runs the organize import action on a single compilation unitvoid
FormatAllAction.runOnMultiple
(ICompilationUnit[] cus) Perform format all on the given compilation units.void
OrganizeImportsAction.runOnMultiple
(ICompilationUnit[] cus) Perform organize import on multiple compilation units. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.cleanup
Modifier and TypeMethodDescriptionorg.eclipse.ltk.core.refactoring.RefactoringStatus
ICleanUp.checkPreConditions
(IJavaProject project, ICompilationUnit[] compilationUnits, org.eclipse.core.runtime.IProgressMonitor monitor) After call to checkPreConditions clients will start creating fixes forcompilationUnits
inproject
unless the result of checkPreConditions contains a fatal errorModifierConstructorDescriptionCleanUpContext
(ICompilationUnit unit, CompilationUnit ast) Creates a new clean up context. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.refactoring
Modifier and TypeMethodDescriptionstatic RenameSupport
RenameSupport.create
(ICompilationUnit unit, String newName, int flags) Creates a new rename support for the givenICompilationUnit
. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.text.java
Modifier and TypeMethodDescriptionprotected final ICompilationUnit
CompletionProposalCollector.getCompilationUnit()
Returns the compilation unit that the receiver operates on, ornull
if theIJavaProject
constructor was used to create the receiver.JavaContentAssistInvocationContext.getCompilationUnit()
Returns the compilation unit that content assist is invoked in,null
if there is none.Modifier and TypeMethodDescriptionIJavadocCompletionProcessor.computeCompletionProposals
(ICompilationUnit cu, int offset, int length, int flags) Deprecated.Returns the completion proposals based on the specified location within the compilation unit.org.eclipse.jface.text.contentassist.IContextInformation[]
IJavadocCompletionProcessor.computeContextInformation
(ICompilationUnit cu, int offset) Deprecated.Returns information about possible contexts based on the specified location within the compilation unit.boolean
IQuickFixProcessor.hasCorrections
(ICompilationUnit unit, int problemId) Returnstrue
if the processor has proposals for the given problem.ModifierConstructorDescriptionCreates a new instance ready to collect proposals.CompletionProposalCollector
(ICompilationUnit cu, boolean ignoreAll) Creates a new instance ready to collect proposals.Creates a new context. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.text.java.correction
Modifier and TypeMethodDescriptionfinal ICompilationUnit
CUCorrectionProposal.getCompilationUnit()
The compilation unit on which the change works.protected ICompilationUnit
CUCorrectionProposal.getInitialCompilationUnit()
ModifierConstructorDescriptionASTRewriteCorrectionProposal
(String name, ICompilationUnit cu, ASTRewrite rewrite, int relevance) Constructs an AST rewrite correction proposal.ASTRewriteCorrectionProposal
(String name, ICompilationUnit cu, ASTRewrite rewrite, int relevance, org.eclipse.swt.graphics.Image image) Constructs an AST rewrite correction proposal.ASTRewriteCorrectionProposal
(String name, ICompilationUnit cu, ASTRewrite rewrite, int relevance, org.eclipse.swt.graphics.Image image, org.eclipse.jdt.ui.text.java.correction.ASTRewriteCorrectionProposalCore delegate) Constructs an AST rewrite correction proposal.protected
CUCorrectionProposal
(String name, ICompilationUnit cu, int relevance, org.eclipse.swt.graphics.Image image) Constructs a correction proposal working on a compilation unit.CUCorrectionProposal
(String name, ICompilationUnit cu, int relevance, org.eclipse.swt.graphics.Image image, CUCorrectionProposalCore delegate) Constructs a correction proposal working on a compilation unit.CUCorrectionProposal
(String name, ICompilationUnit cu, org.eclipse.ltk.core.refactoring.TextChange change, int relevance) Constructs a correction proposal working on a compilation unit with a given text change.CUCorrectionProposal
(String name, ICompilationUnit cu, org.eclipse.ltk.core.refactoring.TextChange change, int relevance, org.eclipse.swt.graphics.Image image) Constructs a correction proposal working on a compilation unit with a given text change.CUCorrectionProposal
(String name, ICompilationUnit cu, org.eclipse.ltk.core.refactoring.TextChange change, int relevance, org.eclipse.swt.graphics.Image image, CUCorrectionProposalCore delegate) Constructs a correction proposal working on a compilation unit. -
Uses of ICompilationUnit in org.eclipse.jdt.ui.wizards
Modifier and TypeMethodDescriptionprotected String
NewTypeWizardPage.constructCUContent
(ICompilationUnit cu, String typeContent, String lineDelimiter) Uses the New Java file template from the code template page to generate a compilation unit with the given type content.protected String
NewTypeWizardPage.getFileComment
(ICompilationUnit parentCU) Deprecated.Instead of file templates, the new type code template specifies the stub for a compilation unit.protected String
NewTypeWizardPage.getFileComment
(ICompilationUnit parentCU, String lineDelimiter) Hook method that gets called fromcreateType
to retrieve a file comment.protected String
NewTypeWizardPage.getTemplate
(String name, ICompilationUnit parentCU) Deprecated.Use getTemplate(String,ICompilationUnit,int)protected String
NewTypeWizardPage.getTemplate
(String name, ICompilationUnit parentCU, int pos) Returns the string resulting from evaluation the given template in the context of the given compilation unit.protected String
NewTypeWizardPage.getTypeComment
(ICompilationUnit parentCU) Deprecated.Use getTypeComment(ICompilationUnit, String)protected String
NewTypeWizardPage.getTypeComment
(ICompilationUnit parentCU, String lineDelimiter) Hook method that gets called fromcreateType
to retrieve a type comment.
ITypeRoot.getWorkingCopy(WorkingCopyOwner, IProgressMonitor)
instead.