From b90b296a6162a19db6370b20536fcc75fec886ce Mon Sep 17 00:00:00 2001 From: Tom Schindl Date: Wed, 8 Feb 2017 23:41:09 +0100 Subject: [PATCH] added javadoc --- .../fx/core/function/BiIntUnaryOperator.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) 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 - 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); }