X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.diagram%2Fsrc%2Forg%2Fsimantics%2Fdiagram%2Fsynchronization%2FCompositeModification.java;h=2aa0054a245320b093869abd6ce00e24ac8af93b;hb=006602e856bbc3e222789cfe00a923b863e3e91b;hp=4e8f3472bfe1d357cde34cc0ce491dcb877db74d;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/CompositeModification.java b/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/CompositeModification.java index 4e8f3472b..2aa0054a2 100644 --- a/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/CompositeModification.java +++ b/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/CompositeModification.java @@ -1,56 +1,56 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 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.diagram.synchronization; - -import java.util.Collection; - -import org.simantics.db.WriteGraph; - -/** - * @author Tuukka Lehtonen - */ -public class CompositeModification extends ModificationAdapter { - - private final Collection modifications; - - public CompositeModification(Double priority, Collection modifications) { - super(priority); - this.modifications = modifications; - } - - @Override - public void perform(WriteGraph g) throws Exception { - for (IModification m : modifications) { - m.perform(g); - m.markComplete(); - } - } - - @Override - public void completed() { - for (IModification m : modifications) { - m.completed(); - } - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder(); - sb.append(getClass().getSimpleName()); - sb.append('('); - sb.append(modifications.size()); - sb.append(')'); - sb.append(modifications); - return sb.toString(); - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2010 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.diagram.synchronization; + +import java.util.Collection; + +import org.simantics.db.WriteGraph; + +/** + * @author Tuukka Lehtonen + */ +public class CompositeModification extends ModificationAdapter { + + private final Collection modifications; + + public CompositeModification(Double priority, Collection modifications) { + super(priority); + this.modifications = modifications; + } + + @Override + public void perform(WriteGraph g) throws Exception { + for (IModification m : modifications) { + m.perform(g); + m.markComplete(); + } + } + + @Override + public void completed() { + for (IModification m : modifications) { + m.completed(); + } + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append('('); + sb.append(modifications.size()); + sb.append(')'); + sb.append(modifications); + return sb.toString(); + } + +}