X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fsrc%2Forg%2Fsimantics%2Fdataboard%2Fmethod%2FMethodType.java;h=1e077413a7c4f13bd22e5f4a436e4c2a87ae1182;hb=123ffb4e766047e37270bfffd46363ac85cdc4f9;hp=f683ffa2e928559788be0fbe8969764fe904985d;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.databoard/src/org/simantics/databoard/method/MethodType.java b/bundles/org.simantics.databoard/src/org/simantics/databoard/method/MethodType.java index f683ffa2e..1e077413a 100644 --- a/bundles/org.simantics.databoard/src/org/simantics/databoard/method/MethodType.java +++ b/bundles/org.simantics.databoard/src/org/simantics/databoard/method/MethodType.java @@ -1,17 +1,17 @@ -/******************************************************************************* - * 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.method; -import org.simantics.databoard.type.Datatype; +import org.simantics.databoard.type.Datatype; public class MethodType implements Comparable { @@ -23,12 +23,12 @@ public class MethodType implements Comparable { Datatype errorType; transient int hash; - - /** - * - * @param requestType - * @param responseType - * @param errorType must be union + + /** + * + * @param requestType + * @param responseType + * @param errorType must be union */ public MethodType(Datatype requestType, Datatype responseType, Datatype errorType) { @@ -54,8 +54,8 @@ public class MethodType implements Comparable { } @Override - public String toString() { - return requestType.toSingleLineString()+" -> " + responseType.toSingleLineString()+ " throws " + errorType.toSingleLineString(); + public String toString() { + return requestType.toSingleLineString()+" -> " + responseType.toSingleLineString()+ " throws " + errorType.toSingleLineString(); }