1 package fi.vtt.simantics.processeditor.actions;
\r
3 import javax.vecmath.Point3d;
\r
6 * SplitPointListener is used by SplitPointAction to pass the selected split point.
\r
7 * Implementing class must set itself as active action into editor (SplitPointAction won't close automatically).
\r
9 * @author Marko Luukkainen <Marko.Luukkainen@vtt.fi>
\r
12 public interface SplitPointListener {
\r
15 * Sets selected split point, or null if user cancelled the action.
\r
18 public void setSplitPoint(Point3d point);
\r