]> gerrit.simantics Code Review - simantics/3d.git/blob - dev/org.simantics.proconf.g3d/src/org/simantics/proconf/g3d/scenegraph/ISelectableNode.java
Release
[simantics/3d.git] / dev / org.simantics.proconf.g3d / src / org / simantics / proconf / g3d / scenegraph / ISelectableNode.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.\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.proconf.g3d.scenegraph;\r
12 \r
13 public interface ISelectableNode extends IGraphicsNode{\r
14     public void setVisible(boolean visible);\r
15     public boolean isVisible();\r
16     public void setSelected(boolean selected);\r
17     public boolean isSelected();\r
18     public void setHighlighted(boolean higlighted);\r
19     public boolean isHighlighted();\r
20     public void setPickable(boolean pickable);\r
21     public String getID();\r
22 }\r