1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2012 Association for Decentralized Information Management in
\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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.ui.browser.actions.remove;
\r
14 import java.util.Map;
\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
24 * Remover for module type nodes. Not functioning - {@link DeleteNodeHandler} prevents deleting other than entityNodes
\r
26 * @author Teemu Lempinen
\r
29 public class ModuleTypeRemover implements Remover {
\r
31 private Resource resource;
\r
33 public ModuleTypeRemover(ReadGraph graph, Resource resource) {
\r
34 this.resource = resource;
\r
38 public String canRemove(ReadGraph graph, Map<Object, Object> aux) throws DatabaseException {
\r
43 public void remove(WriteGraph graph) throws DatabaseException {
\r
44 System.out.println("Delete resource " + resource);
\r