diff --git a/junixsocket-common/src/main/java/org/newsclub/net/unix/AFFunction.java b/junixsocket-common/src/main/java/org/newsclub/net/unix/AFFunction.java index abaa87435..04933ac26 100644 --- a/junixsocket-common/src/main/java/org/newsclub/net/unix/AFFunction.java +++ b/junixsocket-common/src/main/java/org/newsclub/net/unix/AFFunction.java @@ -1,7 +1,31 @@ +/* + * junixsocket + * + * Copyright 2009-2023 Christian Kohlschütter + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.newsclub.net.unix; +/** + * junixsocket-internal variant of {@code java.util.Function}, to allow compiling junixsocket-common + * with retrolambda for Java 1.7. + * + * @param the type of the input to the function + * @param the type of the result of the function + */ @FunctionalInterface -public interface AFFunction { +interface AFFunction { /** * Applies this function to the given argument. diff --git a/junixsocket-common/src/main/java/org/newsclub/net/unix/AFSupplier.java b/junixsocket-common/src/main/java/org/newsclub/net/unix/AFSupplier.java index a0d50d2a5..f36d31eed 100644 --- a/junixsocket-common/src/main/java/org/newsclub/net/unix/AFSupplier.java +++ b/junixsocket-common/src/main/java/org/newsclub/net/unix/AFSupplier.java @@ -1,12 +1,35 @@ +/* + * junixsocket + * + * Copyright 2009-2023 Christian Kohlschütter + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.newsclub.net.unix; +/** + * junixsocket-internal variant of {@code java.util.Supplier}, to allow compiling junixsocket-common + * with retrolambda for Java 1.7. + * + * @param the type of results supplied by this supplier + */ @FunctionalInterface interface AFSupplier { - /** - * Gets a result. - * - * @return a result - */ - T get(); + /** + * Gets a result. + * + * @return a result + */ + T get(); }