]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/Function.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / Function.java
index 8362794e222c42f92bc77afa4ccd3c14374e56c8..146baabdf68692ff05a41868ce188f3fa1293697 100644 (file)
@@ -1,30 +1,30 @@
-/*******************************************************************************\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.utils.datastructures;\r
-\r
-/**\r
- * A generic f(x) function object that returns a result (possibly) based on its\r
- * arguments (x).\r
- * \r
- * @author Tuukka Lehtonen\r
- * \r
- * @param <T> return value type\r
- */\r
-public interface Function<T> {\r
-\r
-    /**\r
-     * @param obj arguments for the function\r
-     * @return function result\r
-     */\r
-    T execute(Object... obj);\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.utils.datastructures;
+
+/**
+ * A generic f(x) function object that returns a result (possibly) based on its
+ * arguments (x).
+ * 
+ * @author Tuukka Lehtonen
+ * 
+ * @param <T> return value type
+ */
+public interface Function<T> {
+
+    /**
+     * @param obj arguments for the function
+     * @return function result
+     */
+    T execute(Object... obj);
+
+}