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

1 2 3 4

  /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/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, LayoutEditorDelegate editor) {
32 super(refactoring, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
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;
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;
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;
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;
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;
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;
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;
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;
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;
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;
UseCompoundDrawableAction.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;
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;
UnwrapWizard.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
29 // This refactoring takes no parameters
UseCompoundDrawableWizard.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
29 // This refactoring takes no parameters
  /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());
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());
ChangeLayoutRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
26 import org.eclipse.ltk.core.refactoring.Change;
124 ChangeLayoutRefactoring refactoring = new ChangeLayoutRefactoring(selectedElements, local
126 refactoring.setFlatten(flatten);
127 refactoring.setType(newLayoutType);
129 refactoring.setInitializedAttributes(initialAttributes);
131 refactoring.setRootView(rootView);
133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
ExtractStyleRefactoringTest.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
26 import org.eclipse.ltk.core.refactoring.Change;
27 import org.eclipse.ltk.core.refactoring.TextFileChange;
89 // This test fails for some reason - not in the refactoring (checked manually)
148 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(selectedElements, local
151 parentStyle, expectedModifiedFileCount, file, refactoring);
175 ExtractStyleRefactoring refactoring = new ExtractStyleRefactoring(file, local
178 parentStyle, expectedModifiedFileCount, file, refactoring);
185 ExtractStyleRefactoring refactoring) throws Exception {
186 refactoring.setStyleName(newStyleName)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceWizard.java 28 import org.eclipse.jdt.internal.ui.refactoring.reorg.RenameRefactoringWizard;
29 import org.eclipse.jdt.ui.refactoring.RefactoringSaveHelper;
31 import org.eclipse.ltk.core.refactoring.RefactoringStatus;
32 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
33 import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
37 * Rename refactoring wizard for Android resources such as {@code @id/foo}
39 @SuppressWarnings("restriction") // JDT refactoring UI
47 * @param refactoring the refactoring
52 @NonNull RenameRefactoring refactoring,
66 RenameRefactoring refactoring = (RenameRefactoring) getRefactoring(); local
93 RenameRefactoring refactoring = new RenameRefactoring(processor); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplatePreviewPage.java 18 import org.eclipse.ltk.core.refactoring.Change;
19 import org.eclipse.ltk.core.refactoring.CompositeChange;
20 import org.eclipse.ltk.internal.ui.refactoring.PreviewWizardPage;
24 @SuppressWarnings("restriction") // Refactoring UI
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipantTest.java 28 import org.eclipse.jdt.internal.corext.refactoring.reorg.IReorgPolicy.IMovePolicy;
29 import org.eclipse.jdt.internal.corext.refactoring.reorg.JavaMoveProcessor;
30 import org.eclipse.jdt.internal.corext.refactoring.reorg.ReorgDestinationFactory;
31 import org.eclipse.jdt.internal.corext.refactoring.reorg.ReorgPolicyFactory;
32 import org.eclipse.jdt.internal.ui.refactoring.reorg.CreateTargetQueries;
33 import org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgQueries;
34 import org.eclipse.ltk.core.refactoring.participants.MoveRefactoring;
132 MoveRefactoring refactoring = new MoveRefactoring(processor); local
133 checkRefactoring(refactoring, expected);

Completed in 220 milliseconds

1 2 3 4