]> gerrit.simantics Code Review - simantics/platform.git/blob - selectionview/SelectionInput.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / selectionview / SelectionInput.java
1 package org.simantics.selectionview;
2
3 import java.util.Collection;
4
5 import org.simantics.ui.selection.WorkbenchSelectionElement;
6
7 public interface SelectionInput {
8
9         Collection<WorkbenchSelectionElement> getElements();
10         <T> T getParameter(String key);
11
12 }