X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fsrc%2Forg%2Fsimantics%2Fdataboard%2Fbinding%2Fmutable%2FMutableLongBinding.java;h=ef4c4fd3ce70b0152ea8c024e688d1b20e3447d8;hb=refs%2Fchanges%2F78%2F2778%2F1;hp=cde574ccf134f8641d5ef8adbcd229818311d632;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableLongBinding.java b/bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableLongBinding.java index cde574ccf..ef4c4fd3c 100644 --- a/bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableLongBinding.java +++ b/bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableLongBinding.java @@ -1,20 +1,20 @@ -/******************************************************************************* - * 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.binding.mutable; -import org.simantics.databoard.binding.LongBinding; -import org.simantics.databoard.binding.error.BindingException; -import org.simantics.databoard.primitives.MutableLong; -import org.simantics.databoard.type.LongType; +import org.simantics.databoard.binding.LongBinding; +import org.simantics.databoard.binding.error.BindingException; +import org.simantics.databoard.primitives.MutableLong; +import org.simantics.databoard.type.LongType; /** * Binds LongType to {@link MutableLong} @@ -49,14 +49,14 @@ public class MutableLongBinding extends LongBinding { } @Override - public Object create(String value) throws BindingException { + public Object create(String value) throws BindingException { try { MutableLong result = new MutableLong(); result.value = Long.valueOf(value); - return result; - } catch (java.lang.NumberFormatException e) { - throw new BindingException( e ); - } + return result; + } catch (java.lang.NumberFormatException e) { + throw new BindingException( e ); + } } @Override