]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/DataNodeMap.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scenegraph.profile / src / org / simantics / scenegraph / profile / DataNodeMap.java
1 /*******************************************************************************\r
2  * Copyright (c) 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.scenegraph.profile;\r
13 \r
14 import org.simantics.scenegraph.INode;\r
15 \r
16 /**\r
17  * An interface for diagram profile styles for accessing scene graph nodes based\r
18  * on diagram data objects, which usually are database resources.\r
19  * \r
20  * <p>\r
21  * See {@link DataNodeConstants} for some predefined constants for accessing\r
22  * certain scene graph nodes related to a diagram.\r
23  * \r
24  * @author Antti Villberg\r
25  * @see Style\r
26  * @see INode\r
27  * @see DataNodeConstants\r
28  */\r
29 public interface DataNodeMap {\r
30 \r
31     INode getNode(Object data);\r
32 \r
33 }\r