HomeSort by relevance Sort by last modified time
    Searched full:refactoring (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample1a-expected-assistant2.txt 2 Wrap in Container : Initiates the given refactoring operation
3 Remove Container : Initiates the given refactoring operation
4 Change Widget Type : Initiates the given refactoring operation
5 Change Layout : Initiates the given refactoring operation
6 Extract as Include : Initiates the given refactoring operation
7 Extract Style : Initiates the given refactoring operation
sample1a-expected-assistant3.txt 2 Wrap in Container : Initiates the given refactoring operation
3 Remove Container : Initiates the given refactoring operation
4 Change Widget Type : Initiates the given refactoring operation
5 Change Layout : Initiates the given refactoring operation
6 Extract as Include : Initiates the given refactoring operation
7 Extract Style : Initiates the given refactoring operation
sample1a-expected-assistant1.txt 2 Extract Android String : Initiates the given refactoring operation
3 Extract Style : Initiates the given refactoring operation
sample1a-expected-assistant4.txt 2 Extract Style : Initiates the given refactoring operation
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoringWizard.java 19 import org.eclipse.ltk.core.refactoring.Refactoring;
20 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
27 public ApplicationPackageNameRefactoringWizard(Refactoring refactoring) {
28 super(refactoring, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringDescriptor.java 20 import org.eclipse.ltk.core.refactoring.Refactoring;
21 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
22 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
33 "com.android.ide.eclipse.adt.refactoring.extract.string"; //$NON-NLS-1$
50 * Creates a new refactoring instance for this refactoring descriptor based on
51 * an argument map. The argument map is created by the refactoring itself in
54 * This is apparently used to replay a refactoring.
61 public Refactoring createRefactoring(RefactoringStatus status) throws CoreException
    [all...]
ExtractStringContribution.java 19 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
20 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
30 * @see org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Map, int)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
20 import org.eclipse.ltk.core.refactoring.Change;
21 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
50 UnwrapRefactoring refactoring = new UnwrapRefactoring(selectedElements, local
53 RefactoringStatus status = refactoring.checkInitialConditions(new NullProgressMonitor());
55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
ExtractStyleRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
25 import org.eclipse.ltk.core.refactoring.Change;
26 import org.eclipse.ltk.core.refactoring.TextFileChange;
88 // This test fails for some reason - not in the refactoring (checked manually)
147 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(selectedElements, local
150 parentStyle, expectedModifiedFileCount, file, refactoring);
174 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(file, local
177 parentStyle, expectedModifiedFileCount, file, refactoring);
184 ExtractStyleRefactoring refactoring) throws Exception {
185 refactoring.setStyleName(newStyleName)
    [all...]
ChangeLayoutRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
26 import org.eclipse.ltk.core.refactoring.Change;
119 ChangeLayoutRefactoring refactoring = new ChangeLayoutRefactoring(selectedElements, local
121 refactoring.setFlatten(flatten);
122 refactoring.setType(newLayoutType);
124 refactoring.setInitializedAttributes(initialAttributes);
126 refactoring.setRootView(rootView);
128 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
ChangeViewRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.core.refactoring.Change;
52 ChangeViewRefactoring refactoring = new ChangeViewRefactoring(selectedElements, local
54 refactoring.setType(newType);
56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
WrapInRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
23 import org.eclipse.ltk.core.refactoring.Change;
53 WrapInRefactoring refactoring = new WrapInRefactoring(selectedElements, local
55 refactoring.setType(fqcn);
56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringWizard.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
20 import org.eclipse.ltk.core.refactoring.Refactoring;
21 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
22 import org.eclipse.ltk.ui.refactoring.UserInputWizardPage;
31 public VisualRefactoringWizard(Refactoring refactoring, LayoutEditor editor) {
32 super(refactoring, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
ChangeLayoutContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
ChangeViewContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
ExtractIncludeContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
ExtractStyleContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
UnwrapContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
WrapInContribution.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
18 import org.eclipse.ltk.core.refactoring.RefactoringContribution;
19 import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
ChangeLayoutAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
ChangeViewAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
ExtractIncludeAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
ExtractStyleAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
UnwrapAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
WrapInAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
22 import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
23 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;

Completed in 761 milliseconds

1 2 3 4 5 6 7 8 9