Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DExtractStringInputPage.java78 private Button mReplaceAllXml; field in ExtractStringInputPage
264 mReplaceAllXml = new Button(options, SWT.CHECK); in createOptionGroup()
265 mReplaceAllXml.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); in createOptionGroup()
266mReplaceAllXml.setToolTipText("When checked, string literals will be replaced in other XML resourc… in createOptionGroup()
267 mReplaceAllXml.setText("Replace in all &XML files for different configuration"); in createOptionGroup()
268 mReplaceAllXml.addSelectionListener(mValidateOnSelection); in createOptionGroup()
330 ref.setReplaceAllXml(mReplaceAllXml.isEnabled() && mReplaceAllXml.getSelection()); in validatePage()
DExtractStringRefactoring.java196 private boolean mReplaceAllXml; field in ExtractStringRefactoring
226 mReplaceAllXml = Boolean.parseBoolean(arguments.get(KEY_RPLC_ALL_XML)); in ExtractStringRefactoring()
253 args.put(KEY_RPLC_ALL_XML, Boolean.toString(mReplaceAllXml)); in createArgumentMap()
331 mReplaceAllXml = replaceAllXml; in setReplaceAllXml()
968 if (mReplaceAllXml) { in checkFinalConditions()