HomeSort by relevance Sort by last modified time
    Searched refs:mUseDefaultLocation (Results 1 - 2 of 2) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewTestProjectCreationPage.java 125 private Button mUseDefaultLocation;
223 return mUseDefaultLocation == null ? INITIAL_USE_DEFAULT_LOCATION
224 : mUseDefaultLocation.getSelection();
423 mUseDefaultLocation = new Button(group, SWT.CHECK);
426 mUseDefaultLocation.setLayoutData(gd);
427 mUseDefaultLocation.setText("Use default location");
428 mUseDefaultLocation.setSelection(INITIAL_USE_DEFAULT_LOCATION);
430 mUseDefaultLocation.addSelectionListener(new SelectionAdapter() {
    [all...]
NewProjectCreationPage.java 143 private Button mUseDefaultLocation;
282 return mUseDefaultLocation == null ? INITIAL_USE_DEFAULT_LOCATION
283 : mUseDefaultLocation.getSelection();
452 mUseDefaultLocation = new Button(group, SWT.CHECK);
453 mUseDefaultLocation.setText("Use default location");
454 mUseDefaultLocation.setSelection(INITIAL_USE_DEFAULT_LOCATION);
468 mUseDefaultLocation.addSelectionListener(location_listener);
786 mUseDefaultLocation.setEnabled(is_new_project);
    [all...]

Completed in 661 milliseconds