]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.proconf.processeditor/src/org/simantics/processeditor/actions/SplitPointListener.java
Set copyright texts for java files in the latest development branches.
[simantics/3d.git] / org.simantics.proconf.processeditor / src / org / simantics / processeditor / actions / SplitPointListener.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007- VTT Technical Research Centre of Finland.\r
3  * All rights reserved. This program and the accompanying materials\r
4  * are made available under the terms of the Eclipse Public License v1.0\r
5  * which accompanies this distribution, and is available at\r
6  * http://www.eclipse.org/legal/epl-v10.html\r
7  *\r
8  * Contributors:\r
9  *     VTT Technical Research Centre of Finland - initial API and implementation\r
10  *******************************************************************************/\r
11 package org.simantics.processeditor.actions;\r
12 \r
13 import javax.vecmath.Point3d;\r
14 \r
15 /**\r
16  * SplitPointListener is used by SplitPointAction to pass the selected split point.\r
17  * Implementing class must set itself as active action into editor (SplitPointAction won't close automatically). \r
18  * \r
19  * @author Marko Luukkainen <Marko.Luukkainen@vtt.fi>\r
20  *\r
21  */\r
22 public interface SplitPointListener {\r
23 \r
24         /**\r
25          * Sets selected split point, or null if user cancelled the action.\r
26          * @param point\r
27          */\r
28         public void setSplitPoint(Point3d point);\r
29 }\r