OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:structuredselection
(Results
1 - 11
of
11
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
OpenWizardAction.java
26
import org.eclipse.jface.viewers.
StructuredSelection
;
114
IStructuredSelection selectionToPass =
StructuredSelection
.EMPTY;
126
selectionToPass = new
StructuredSelection
(file);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiContentOutlinePage.java
45
import org.eclipse.jface.viewers.
StructuredSelection
;
147
if (selection instanceof
StructuredSelection
) {
148
StructuredSelection
structSel = (
StructuredSelection
)selection;
385
if (selection instanceof
StructuredSelection
) {
386
StructuredSelection
structuredSelection
= (
StructuredSelection
)selection;
388
if (
structuredSelection
.size() > 0) {
391
for (Iterator it =
structuredSelection
.iterator(); it.hasNext(); )
[
all
...]
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
StackTracePanel.java
221
IStructuredSelection
structuredSelection
= (IStructuredSelection)selection;
222
Object object =
structuredSelection
.getFirstElement();
EmulatorControlPanel.java
707
IStructuredSelection
structuredSelection
= (IStructuredSelection)selection;
708
Object selectedObject =
structuredSelection
.getFirstElement();
754
IStructuredSelection
structuredSelection
= (IStructuredSelection)selection;
755
Object selectedObject =
structuredSelection
.getFirstElement();
[
all
...]
AllocationPanel.java
445
IStructuredSelection
structuredSelection
= (IStructuredSelection)selection;
446
Object object =
structuredSelection
.getFirstElement();
ThreadPanel.java
561
IStructuredSelection
structuredSelection
= (IStructuredSelection)selection;
562
Object object =
structuredSelection
.getFirstElement();
/sdk/traceview/src/com/android/traceview/
ProfileView.java
28
import org.eclipse.jface.viewers.
StructuredSelection
;
290
StructuredSelection
sel = new
StructuredSelection
(md);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java
41
import org.eclipse.jface.viewers.
StructuredSelection
;
302
action.setSelection(new
StructuredSelection
(project));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java
42
import org.eclipse.jface.viewers.
StructuredSelection
;
658
mViewer.setSelection(new
StructuredSelection
(device));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java
75
import org.eclipse.jface.viewers.
StructuredSelection
;
349
StructuredSelection
selection = new
StructuredSelection
(project);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java
59
import org.eclipse.jface.viewers.
StructuredSelection
;
296
mSelectionTableViewer.setSelection(new
StructuredSelection
(qualifier), true);
[
all
...]
Completed in 343 milliseconds