1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.db.layer0.variable;
14 import org.simantics.databoard.Bindings;
15 import org.simantics.db.Resource;
16 import org.simantics.db.WriteGraph;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.layer0.Layer0;
20 public class StandardResourceVariableSpaceManipulator implements VariableSpaceManipulator {
22 final Variable target;
24 public StandardResourceVariableSpaceManipulator(Variable target) {
28 public Variable createVariable(WriteGraph graph, String rvi) throws DatabaseException {
32 public Variable createProperty(WriteGraph graph, String name) throws DatabaseException {
33 if("HasDescription".equals(name)) {
34 Layer0 l0 = Layer0.getInstance(graph);
35 Resource targetResource = target.getInterface(graph, Resource.class);
36 graph.claimLiteral(targetResource, l0.HasDescription, "", Bindings.STRING);
37 return target.getProperty(graph, "HasDescription");
42 public Variable createChild(WriteGraph graph, String name, Object content) throws DatabaseException {
47 public void apply(WriteGraph graph, Modification modification)
48 throws DatabaseException {
49 for(PropertyCreationData data : modification.newProperties) {
50 createProperty(graph, data.name);