X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fwidgets%2FStringPropertyModifier.java;h=a472300fbd1a8498b0f91cde2504a18e8421a444;hb=70d03af6b040eee42d3461907e9ea2c8ad4cfb77;hp=e8ade01b0b5e2cb06a9ddeb05a48061ccb3ad8c3;hpb=969bd23cab98a79ca9101af33334000879fb60c5;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 index e8ade01b0..a472300fb 100644 --- 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 @@ -1,50 +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); - - } - +/******************************************************************************* + * 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