]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/IHintSynchronizer.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / synchronization / IHintSynchronizer.java
index 956a5027e7ad76be33b560f891f5ff8bb79ac66a..31ed2c1f969f02d28e8c9de994a8b7a4dbc50fd4 100644 (file)
@@ -1,62 +1,62 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.diagram.synchronization;\r
-\r
-import org.simantics.utils.datastructures.hints.IHintObservable;\r
-import org.simantics.utils.datastructures.hints.IHintContext.Key;\r
-\r
-/**\r
- * A graph synchronizer for hint changes in diagram elements.\r
- * \r
- * @author Tuukka Lehtonen\r
- * @see ISynchronizationContext\r
- * @see SynchronizationHints\r
- * @see IModificationQueue\r
- * @see IHintObservable\r
- */\r
-public interface IHintSynchronizer {\r
-\r
-    /**\r
-     * Makes sure the provided observable (element) if properly synchronized into the graph.\r
-     * \r
-     * @param context\r
-     * @param observable\r
-     * @return\r
-     */\r
-    int synchronize(ISynchronizationContext context, IHintObservable observable);\r
-\r
-    /**\r
-     * @param queue an interface for dispatching modifications (see\r
-     *        {@link IModification}) for synchronizing the model according to\r
-     *        the hint changes\r
-     * @param sender the observable in which the hint has changed\r
-     * @param key the key of the changed hint\r
-     * @param oldValue the previous hint value\r
-     * @param newValue the new hint value, must be non-null\r
-     * @return <code>true</code> if the modification was processed by this\r
-     *         synchronizer, <code>false</code> otherwise\r
-     */\r
-    boolean hintChanged(ISynchronizationContext context, IHintObservable sender, Key key, Object oldValue, Object newValue);\r
-\r
-    /**\r
-     * @param queue an interface for dispatching modifications (see\r
-     *        {@link IModification}) for synchronizing the model according to\r
-     *        the hint changes\r
-     * @param sender the observable in which the hint has changed\r
-     * @param key the key of the changed hint\r
-     * @param oldValue the previous hint value\r
-     * @return <code>true</code> if the modification was processed by this\r
-     *         synchronizer, <code>false</code> otherwise\r
-     */\r
-    boolean hintRemoved(ISynchronizationContext context, IHintObservable sender, Key key, Object oldValue);\r
-\r
-}\r
+/*******************************************************************************
+ * 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 org.simantics.utils.datastructures.hints.IHintObservable;
+import org.simantics.utils.datastructures.hints.IHintContext.Key;
+
+/**
+ * A graph synchronizer for hint changes in diagram elements.
+ * 
+ * @author Tuukka Lehtonen
+ * @see ISynchronizationContext
+ * @see SynchronizationHints
+ * @see IModificationQueue
+ * @see IHintObservable
+ */
+public interface IHintSynchronizer {
+
+    /**
+     * Makes sure the provided observable (element) if properly synchronized into the graph.
+     * 
+     * @param context
+     * @param observable
+     * @return
+     */
+    int synchronize(ISynchronizationContext context, IHintObservable observable);
+
+    /**
+     * @param queue an interface for dispatching modifications (see
+     *        {@link IModification}) for synchronizing the model according to
+     *        the hint changes
+     * @param sender the observable in which the hint has changed
+     * @param key the key of the changed hint
+     * @param oldValue the previous hint value
+     * @param newValue the new hint value, must be non-null
+     * @return <code>true</code> if the modification was processed by this
+     *         synchronizer, <code>false</code> otherwise
+     */
+    boolean hintChanged(ISynchronizationContext context, IHintObservable sender, Key key, Object oldValue, Object newValue);
+
+    /**
+     * @param queue an interface for dispatching modifications (see
+     *        {@link IModification}) for synchronizing the model according to
+     *        the hint changes
+     * @param sender the observable in which the hint has changed
+     * @param key the key of the changed hint
+     * @param oldValue the previous hint value
+     * @return <code>true</code> if the modification was processed by this
+     *         synchronizer, <code>false</code> otherwise
+     */
+    boolean hintRemoved(ISynchronizationContext context, IHintObservable sender, Key key, Object oldValue);
+
+}