Home
last modified time | relevance | path

Searched refs:restoreExistingImports (Results 1 – 10 of 10) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/
H A DCodeStyleConfiguration.java53 …c ImportRewrite createImportRewrite(ICompilationUnit cu, boolean restoreExistingImports) throws Ja… in createImportRewrite() argument
54 …lipse.jdt.core.manipulation.CodeStyleConfiguration.createImportRewrite(cu, restoreExistingImports); in createImportRewrite()
67 …static ImportRewrite createImportRewrite(CompilationUnit astRoot, boolean restoreExistingImports) { in createImportRewrite() argument
68 ….jdt.core.manipulation.CodeStyleConfiguration.createImportRewrite(astRoot, restoreExistingImports); in createImportRewrite()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/
H A DCodeStyleConfiguration.java84 …c ImportRewrite createImportRewrite(ICompilationUnit cu, boolean restoreExistingImports) throws Ja… in createImportRewrite() argument
85 return configureImportRewrite(ImportRewrite.create(cu, restoreExistingImports)); in createImportRewrite()
98 …static ImportRewrite createImportRewrite(CompilationUnit astRoot, boolean restoreExistingImports) { in createImportRewrite() argument
99 return configureImportRewrite(ImportRewrite.create(astRoot, restoreExistingImports)); in createImportRewrite()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/
H A DCoreTests.java49 …tring[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) throws Co… in newImportsRewrite() argument
50 ImportRewrite rewrite= StubUtility.createImportRewrite(cu, restoreExistingImports); in newImportsRewrite()
57 …nit cu, String[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) { in newImportsRewrite() argument
58 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
H A DAddImportTest.java1894 …rite(ICompilationUnit cu, String[] order, int threshold, boolean restoreExistingImports) throws Co… in newImportsRewrite() argument
1895 return newImportsRewrite(cu, order, threshold, threshold, restoreExistingImports); in newImportsRewrite()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/rewrite/describing/
H A DImportRewrite14Test.java150 …tring[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) throws Co… in newImportsRewrite() argument
151 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
158 …nit cu, String[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) { in newImportsRewrite() argument
159 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
H A DImportRewrite18Test.java820 …tring[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) throws Co… in newImportsRewrite() argument
821 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
828 …nit cu, String[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) { in newImportsRewrite() argument
829 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
H A DImportRewriteTest.java5042 …tring[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) throws Co… in newImportsRewrite() argument
5043 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
5050 …nit cu, String[] order, int normalThreshold, int staticThreshold, boolean restoreExistingImports) { in newImportsRewrite() argument
5051 ImportRewrite rewrite= ImportRewrite.create(cu, restoreExistingImports); in newImportsRewrite()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/rewrite/
H A DImportRewrite.java326 private final boolean restoreExistingImports; field in ImportRewrite
369 …public static ImportRewrite create(ICompilationUnit cu, boolean restoreExistingImports) throws Jav… in create() argument
374 if (restoreExistingImports) { in create()
400 public static ImportRewrite create(CompilationUnit astRoot, boolean restoreExistingImports) { in create() argument
409 if (restoreExistingImports) { in create()
432 this.restoreExistingImports= !existingImports.isEmpty(); in ImportRewrite()
435 this.restoreExistingImports= false; in ImportRewrite()
1361 if (this.restoreExistingImports) { in buildImportRewriteConfiguration()
1449 return !this.restoreExistingImports in hasRecordedChanges()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/structure/
H A DCompilationUnitRewrite.java378 …private ImportRewrite createImportRewrite(CompilationUnit astRoot, boolean restoreExistingImports)… in createImportRewrite() argument
379 …ImportRewrite rewrite= CodeStyleConfiguration.createImportRewrite(astRoot, restoreExistingImports); in createImportRewrite()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/internal/core/manipulation/
H A DStubUtility.java1554 …c ImportRewrite createImportRewrite(ICompilationUnit cu, boolean restoreExistingImports) throws Ja… in createImportRewrite() argument
1555 return CodeStyleConfiguration.createImportRewrite(cu, restoreExistingImports); in createImportRewrite()
1573 …static ImportRewrite createImportRewrite(CompilationUnit astRoot, boolean restoreExistingImports) { in createImportRewrite() argument
1574 …ImportRewrite rewrite= CodeStyleConfiguration.createImportRewrite(astRoot, restoreExistingImports); in createImportRewrite()