1 /*******************************************************************************
\r
2 * Copyright (c) 2012, 2013 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.g3d.csg.adapters;
\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
22 public class NodeRemover implements Remover {
\r
24 //private Resource node;
\r
26 public NodeRemover(Resource node) {
\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
37 public void remove(WriteGraph graph) throws DatabaseException {
\r