]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
e21bd811cc9647cc8e03c8d76357a767368953d2
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2012 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.sysdyn.ui.browser.actions.remove;\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 import org.simantics.modeling.ui.modelBrowser.handlers.DeleteNodeHandler;\r
22 \r
23 /**\r
24  * Remover for module type nodes. Not functioning - {@link DeleteNodeHandler} prevents deleting other than entityNodes\r
25  * \r
26  * @author Teemu Lempinen\r
27  *\r
28  */\r
29 public class ModuleTypeRemover implements Remover {\r
30 \r
31     private Resource resource;\r
32     \r
33     public ModuleTypeRemover(ReadGraph graph, Resource resource) {\r
34         this.resource = resource;\r
35     }\r
36     \r
37     @Override\r
38     public String canRemove(ReadGraph graph, Map<Object, Object> aux) throws DatabaseException {\r
39         return null;\r
40     }\r
41 \r
42     @Override\r
43     public void remove(WriteGraph graph) throws DatabaseException {\r
44         System.out.println("Delete resource " + resource);\r
45     }\r
46 \r
47 }\r