]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/src/org/simantics/g3d/adapters/NodeRemover.java
Copyrights
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / adapters / NodeRemover.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012, 2013 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.g3d.adapters;\r
13 \r
14 import java.util.Map;\r
15 \r
16 import org.simantics.db.ReadGraph;\r
17 import org.simantics.db.Resource;\r
18 import org.simantics.db.WriteGraph;\r
19 import org.simantics.db.exception.DatabaseException;\r
20 import org.simantics.db.layer0.adapter.Remover;\r
21 \r
22 public class NodeRemover implements Remover {\r
23         \r
24         //private Resource node;\r
25         \r
26         public NodeRemover(Resource node) {\r
27                 //this.node = node;\r
28         }\r
29         \r
30         @Override\r
31         public String canRemove(ReadGraph graph, Map<Object, Object> aux)\r
32                         throws DatabaseException {\r
33                 return "Removing scene-graph nodes from model browser is not supported.";\r
34         }\r
35         \r
36         @Override\r
37         public void remove(WriteGraph graph) throws DatabaseException {\r
38                 \r
39         }\r
40 \r
41 }\r