Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2017-02-08 22:41:09 +0000
committerTom Schindl2017-02-08 22:41:09 +0000
commitb90b296a6162a19db6370b20536fcc75fec886ce (patch)
tree563af7c76fa9d0a3530ccf4035a0dacbff1e3d98 /bundles
parent20cf8afb429e60986018def00d6ba91ab5061ae6 (diff)
downloadorg.eclipse.efxclipse-b90b296a6162a19db6370b20536fcc75fec886ce.tar.gz
org.eclipse.efxclipse-b90b296a6162a19db6370b20536fcc75fec886ce.tar.xz
org.eclipse.efxclipse-b90b296a6162a19db6370b20536fcc75fec886ce.zip
added javadoc
Diffstat (limited to 'bundles')
-rw-r--r--bundles/runtime/org.eclipse.fx.core/src/org/eclipse/fx/core/function/BiIntUnaryOperator.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/bundles/runtime/org.eclipse.fx.core/src/org/eclipse/fx/core/function/BiIntUnaryOperator.java b/bundles/runtime/org.eclipse.fx.core/src/org/eclipse/fx/core/function/BiIntUnaryOperator.java
index 9b4f510ec..ff118195b 100644
--- a/bundles/runtime/org.eclipse.fx.core/src/org/eclipse/fx/core/function/BiIntUnaryOperator.java
+++ b/bundles/runtime/org.eclipse.fx.core/src/org/eclipse/fx/core/function/BiIntUnaryOperator.java
@@ -1,5 +1,31 @@
+/*******************************************************************************
+ * Copyright (c) 2017 BestSolution.at and others.
+ * 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:
+ * Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
+ *******************************************************************************/
package org.eclipse.fx.core.function;
+import java.util.function.IntUnaryOperator;
+
+/**
+ * Like {@link IntUnaryOperator} but with 2 arguments
+ *
+ * @since 3.0
+ */
public interface BiIntUnaryOperator {
+ /**
+ * Applies this operator to the given operands.
+ *
+ * @param t
+ * the first operand
+ * @param u
+ * the second operand
+ * @return the operator result
+ */
public int applyAsInt(int t, int u);
}

Back to the top