Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DProjectContentsPage.java61 private Button mLibraryToggle; field in ProjectContentsPage
106 mLibraryToggle = new Button(container, SWT.CHECK); in createControl()
107 mLibraryToggle.setSelection(true); in createControl()
108 mLibraryToggle.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 4, 1)); in createControl()
109 mLibraryToggle.setText("Mark this project as a library"); in createControl()
110 mLibraryToggle.setSelection(mValues.isLibrary); in createControl()
111 mLibraryToggle.addSelectionListener(this); in createControl()
250 } else if (source == mLibraryToggle) { in widgetSelected()
251 mValues.isLibrary = mLibraryToggle.getSelection(); in widgetSelected()