X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fwidgets%2FStringPropertyModifier.java;fp=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fwidgets%2FStringPropertyModifier.java;h=e8ade01b0b5e2cb06a9ddeb05a48061ccb3ad8c3;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/StringPropertyModifier.java b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/StringPropertyModifier.java new file mode 100644 index 000000000..e8ade01b0 --- /dev/null +++ b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/StringPropertyModifier.java @@ -0,0 +1,50 @@ +/******************************************************************************* + * Copyright (c) 2007, 2012 Association for Decentralized Information Management + * in Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.browsing.ui.swt.widgets; + +import org.simantics.browsing.ui.swt.widgets.impl.TextModifyListenerImpl; +import org.simantics.databoard.Bindings; +import org.simantics.db.Resource; +import org.simantics.db.WriteGraph; +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.layer0.util.Layer0Utils; +import org.simantics.db.management.ISessionContext; + + +public class StringPropertyModifier extends TextModifyListenerImpl { + + final private String propertyURI; + final private boolean undo; + public StringPropertyModifier(ISessionContext context, String propertyURI) { + this(context, propertyURI,true); + } + + public StringPropertyModifier(ISessionContext context, String propertyURI, boolean undo) { + this.propertyURI = propertyURI; + this.undo = undo; + } + + @Override + public void applyText(WriteGraph graph, Resource issue, String text) throws DatabaseException { + if (undo) { + String meta = propertyURI; + int i = propertyURI.lastIndexOf("/"); + if (i > 0) + meta = meta.substring(i+1); + Layer0Utils.addCommentMetadata(graph, "Modify String " +meta); + graph.markUndoPoint(); + } + graph.claimLiteral(issue, graph.getResource(propertyURI), text, Bindings.STRING); + + } + +} \ No newline at end of file