HomeSort by relevance Sort by last modified time
    Searched defs:selectionManager (Results 1 - 17 of 17) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlineDragListener.java 64 SelectionManager selectionManager = canvas.getSelectionManager();
70 mDragSelection.add(selectionManager.createSelection(viewInfo));
73 SelectionManager.sanitize(mDragSelection);
OutlineDropListener.java 152 final SelectionManager selectionManager = canvas.getSelectionManager();
153 selectionManager.setOutlineSelection(added);
FragmentMenu.java 78 SelectionManager selectionManager = mCanvas.getSelectionManager();
79 List<SelectionItem> selections = selectionManager.getSelections();
218 SelectionManager selectionManager = mCanvas.getSelectionManager();
219 for (SelectionItem item : selectionManager.getSelections()) {
239 SelectionManager selectionManager = mCanvas.getSelectionManager();
241 for (SelectionItem item : selectionManager.getSnapshot()) {
ListViewTypeMenu.java 188 SelectionManager selectionManager = mCanvas.getSelectionManager();
189 for (SelectionItem item : selectionManager.getSelections()) {
206 SelectionManager selectionManager = mCanvas.getSelectionManager();
208 for (SelectionItem item : selectionManager.getSnapshot()) {
PlayAnimationMenu.java 89 SelectionManager selectionManager = mCanvas.getSelectionManager();
90 List<SelectionItem> selection = selectionManager.getSelections();
144 SelectionManager selectionManager = mCanvas.getSelectionManager();
145 List<SelectionItem> selection = selectionManager.getSelections();
MoveGesture.java 431 final SelectionManager selectionManager = mCanvas.getSelectionManager();
435 if (!selectionManager.selectDropped(nodes, null /* indices */)) {
444 selectionManager.selectDropped(nodes, indices);
793 TreePath treePath = SelectionManager.getTreePath(mCurrentView);
    [all...]
OutlinePage.java     [all...]
GestureManager.java 315 SelectionManager selectionManager = mCanvas.getSelectionManager();
317 if (!selectionManager.isEmpty()) {
320 selectionManager.findHandle(controlPoint);
333 for (SelectionItem item : selectionManager.getSelections()) {
723 SelectionManager selectionManager = mCanvas.getSelectionManager();
728 selectionManager.findHandle(controlPoint);
745 List<SelectionItem> selections = selectionManager.getSelections();
764 primary = selectionManager.selectSingle(vi)
    [all...]
LayoutActionBar.java 120 SelectionManager selectionManager = canvas.getSelectionManager();
121 List<SelectionItem> selections = selectionManager.getSelections();
SelectionManager.java 82 * The {@link SelectionManager} manages the selection in the canvas editor.
94 public class SelectionManager implements ISelectionProvider {
119 * Constructs a new {@link SelectionManager} associated with the given layout canvas.
121 * @param layoutCanvas The layout canvas to create a {@link SelectionManager} for.
123 public SelectionManager(LayoutCanvas layoutCanvas) {
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
TableDecorator.java 28 private SelectionManager selectionManager;
72 public SelectionManager addSelectionManager(boolean selectOnlyOne) {
73 selectionManager = new DynamicTableSelectionManager(dataTable, selectOnlyOne);
75 return selectionManager;
79 assert selectionManager != null;
82 selectionPanel.setListener(selectionManager);
91 assert selectionManager != null;
93 actionsPanel.setSelectionListener(selectionManager);
124 assert selectionManager != null
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostListView.java 6 import autotest.common.table.SelectionManager;
40 protected SelectionManager selectionManager;
49 selectionManager = hostTableDecorator.addSelectionManager(false);
50 table.setWidgetFactory(selectionManager);
114 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
174 if (selectionManager.isEmpty())
JobListView.java 8 import autotest.common.table.SelectionManager;
59 private SelectionManager selectionManager;
100 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
152 selectionManager = tableDecorator.addSelectionManager(false);
153 jobTable.setWidgetFactory(selectionManager);
240 if (selectionManager.isEmpty())
RecurringView.java 6 import autotest.common.table.SelectionManager;
44 private SelectionManager selectionManager;
91 selectionManager = tableDecorator.addSelectionManager(false);
92 recurringTable.setWidgetFactory(selectionManager);
116 if (selectionManager.isEmpty())
240 Set<JSONObject> selectedSet = selectionManager.getSelectedObjects();
HostDetailView.java 17 import autotest.common.table.SelectionManager;
158 private SelectionManager selectionManager;
356 selectionManager = tableDecorator.addSelectionManager(false);
357 jobsTable.setWidgetFactory(selectionManager);
367 selectionManager.deselectAll();
461 if (selectionManager.isEmpty())
467 Set<JSONObject> selectedEntries = selectionManager.getSelectedObjects();
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetView.java 80 private SpreadsheetSelectionManager selectionManager =
216 selectionManager.clearSelection();
344 if (!selectionManager.isEmpty()) {
345 testSet = getTestSet(selectionManager.getSelectedCells());
354 selectionManager.toggleSelected(cellInfo);
536 if (selectionManager.isEmpty()) {
539 tests = getTestSet(selectionManager.getSelectedCells());
552 selectionManager.selectAll();
556 selectionManager.clearSelection();
TableView.java 9 import autotest.common.table.SelectionManager;
101 private SelectionManager selectionManager;
205 selectionManager = tableDecorator.addSelectionManager(false);
210 selectionManager = new SelectionManager(table, false);
333 if (selectionManager.getSelectedObjects().size() > 0) {
334 testSet = getTestSet(selectionManager.getSelectedObjects());
342 selectionManager.toggleSelected(row);
409 selectionManager.refreshSelection()
    [all...]

Completed in 442 milliseconds