]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/function/DbConsumer.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / function / DbConsumer.java
index 6e37bb527b7b8118c0b9438e36e26f556656fa88..4356710f7cc9b736dbc198f890d93f953650bb4c 100644 (file)
@@ -1,62 +1,62 @@
-/*******************************************************************************\r
- * Copyright (c) 2016 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
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.function;\r
-\r
-import java.util.Objects;\r
-import java.util.function.Consumer;\r
-\r
-import org.simantics.db.exception.DatabaseException;\r
-\r
-/**\r
- * Represents a database operation that accepts a single input argument and\r
- * returns no result and can throw database exceptions. Unlike most other\r
- * functional interfaces, {@code DbConsumer} is expected to operate via\r
- * side-effects.\r
- *\r
- * <p>\r
- * This is a functional interface whose functional method is\r
- * {@link #accept(Object)}. The only difference to {@link Consumer} is that this\r
- * allows throwing DatabaseException.\r
- *\r
- * @param <T>\r
- *            the type of the input to the operation\r
- *\r
- * @author Tuukka Lehtonen\r
- * @since 1.22\r
- */\r
-@FunctionalInterface\r
-public interface DbConsumer<T> {\r
-\r
-    /**\r
-     * Performs this operation on the given argument.\r
-     *\r
-     * @param t the input argument\r
-     */\r
-    void accept(T t) throws DatabaseException;\r
-\r
-    /**\r
-     * Returns a composed {@code Consumer} that performs, in sequence, this\r
-     * operation followed by the {@code after} operation. If performing either\r
-     * operation throws an exception, it is relayed to the caller of the\r
-     * composed operation.  If performing this operation throws an exception,\r
-     * the {@code after} operation will not be performed.\r
-     *\r
-     * @param after the operation to perform after this operation\r
-     * @return a composed {@code Consumer} that performs in sequence this\r
-     * operation followed by the {@code after} operation\r
-     * @throws NullPointerException if {@code after} is null\r
-     */\r
-    default DbConsumer<T> andThen(DbConsumer<? super T> after) {\r
-        Objects.requireNonNull(after);\r
-        return (T t) -> { accept(t); after.accept(t); };\r
-    }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2016 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.function;
+
+import java.util.Objects;
+import java.util.function.Consumer;
+
+import org.simantics.db.exception.DatabaseException;
+
+/**
+ * Represents a database operation that accepts a single input argument and
+ * returns no result and can throw database exceptions. Unlike most other
+ * functional interfaces, {@code DbConsumer} is expected to operate via
+ * side-effects.
+ *
+ * <p>
+ * This is a functional interface whose functional method is
+ * {@link #accept(Object)}. The only difference to {@link Consumer} is that this
+ * allows throwing DatabaseException.
+ *
+ * @param <T>
+ *            the type of the input to the operation
+ *
+ * @author Tuukka Lehtonen
+ * @since 1.22
+ */
+@FunctionalInterface
+public interface DbConsumer<T> {
+
+    /**
+     * Performs this operation on the given argument.
+     *
+     * @param t the input argument
+     */
+    void accept(T t) throws DatabaseException;
+
+    /**
+     * Returns a composed {@code Consumer} that performs, in sequence, this
+     * operation followed by the {@code after} operation. If performing either
+     * operation throws an exception, it is relayed to the caller of the
+     * composed operation.  If performing this operation throws an exception,
+     * the {@code after} operation will not be performed.
+     *
+     * @param after the operation to perform after this operation
+     * @return a composed {@code Consumer} that performs in sequence this
+     * operation followed by the {@code after} operation
+     * @throws NullPointerException if {@code after} is null
+     */
+    default DbConsumer<T> andThen(DbConsumer<? super T> after) {
+        Objects.requireNonNull(after);
+        return (T t) -> { accept(t); after.accept(t); };
+    }
+}