Home
last modified time | relevance | path

Searched refs:mRemoveAll (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractStyleWizard.java81 private Button mRemoveAll; field in ExtractStyleWizard.InputPage
123 mRemoveAll = new Button(composite, SWT.CHECK); in createControl()
124 mRemoveAll.setSelection(false); in createControl()
125 mRemoveAll.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 2, 1)); in createControl()
126 mRemoveAll.setText("Remove all extracted attributes regardless of value"); in createControl()
127 mRemoveAll.addSelectionListener(mSelectionValidateListener); in createControl()
376 refactoring.setRemoveAll(mRemoveAll.getSelection()); in validatePage()
DExtractStyleRefactoring.java124 private boolean mRemoveAll; field in ExtractStyleRefactoring
139 mRemoveAll = Boolean.parseBoolean(arguments.get(KEY_REMOVE_ALL)); in ExtractStyleRefactoring()
202 args.put(KEY_REMOVE_ALL, Boolean.toString(mRemoveAll)); in createArgumentMap()
235 mRemoveAll = removeAll; in setRemoveAll()
355 if (mRemoveExtracted || mRemoveAll) { in computeChanges()
359 if (mRemoveAll || attr.getValue().equals(attribute.getValue())) { in computeChanges()