]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.selectionview/src/org/simantics/selectionview/SelectionInput.java
a07d6fb04668c80660086c74a21d849a0c351b25
[simantics/platform.git] / bundles / org.simantics.selectionview / src / org / simantics / 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 }