package org.simantics.browsing.ui.swt; import org.simantics.browsing.ui.swt.widgets.GraphExplorerComposite.InputSource; import org.simantics.db.management.ISessionContext; public class PassThruInputSource implements InputSource { public static PassThruInputSource INSTANCE = new PassThruInputSource(); @Override public Object get(ISessionContext ctx, Object selection) { return selection; } }