OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRemoveAll
(Results
1 - 2
of
2
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java
81
private Button
mRemoveAll
;
123
mRemoveAll
= new Button(composite, SWT.CHECK);
124
mRemoveAll
.setSelection(false);
125
mRemoveAll
.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 2, 1));
126
mRemoveAll
.setText("Remove all extracted attributes regardless of value");
127
mRemoveAll
.addSelectionListener(mSelectionValidateListener);
376
refactoring.setRemoveAll(
mRemoveAll
.getSelection());
ExtractStyleRefactoring.java
124
private boolean
mRemoveAll
;
139
mRemoveAll
= Boolean.parseBoolean(arguments.get(KEY_REMOVE_ALL));
202
args.put(KEY_REMOVE_ALL, Boolean.toString(
mRemoveAll
));
235
mRemoveAll
= removeAll;
355
if (mRemoveExtracted ||
mRemoveAll
) {
359
if (
mRemoveAll
|| attr.getValue().equals(attribute.getValue())) {
Completed in 835 milliseconds