X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fsrc%2Forg%2Fsimantics%2Fdataboard%2Faccessor%2Fevent%2FMapEntryRemoved.java;h=d1299d044875dc8a72b33f9f78393329a36913da;hb=15af8a20abe8b2ba24b52c9da8bce6c92351dc43;hp=f6fee8a221c66c79bd6dded4cdd70467de68aea2;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryRemoved.java b/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryRemoved.java index f6fee8a22..d1299d044 100644 --- a/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryRemoved.java +++ b/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/MapEntryRemoved.java @@ -1,28 +1,28 @@ -/******************************************************************************* - * Copyright (c) 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 - *******************************************************************************/ +/******************************************************************************* + * Copyright (c) 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.databoard.accessor.event; -import org.simantics.databoard.accessor.reference.ChildReference; -import org.simantics.databoard.binding.mutable.MutableVariant; +import org.simantics.databoard.accessor.reference.ChildReference; +import org.simantics.databoard.binding.mutable.MutableVariant; public class MapEntryRemoved extends ModificationEvent { /** The key of the entry. */ public MutableVariant key; - - public MapEntryRemoved(ChildReference reference, MutableVariant key) { - this.reference = reference; - this.key = key; - } + + public MapEntryRemoved(ChildReference reference, MutableVariant key) { + this.reference = reference; + this.key = key; + } public MapEntryRemoved(MutableVariant key) { this.key = key; @@ -33,12 +33,12 @@ public class MapEntryRemoved extends ModificationEvent { MapEntryRemoved result = new MapEntryRemoved(key); result.reference = newReference; return result; - } - - @Override - public String toString() { - return toRef()+" "+key+" removed"; - } + } + + @Override + public String toString() { + return toRef()+" "+key+" removed"; + } }