Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissilb committed Oct 6, 2023
1 parent a440e4b commit 0f9089e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
package de.gwasch.code.escframework.states.functions;

/**
* A {@code Function} can be injected to a {@link FunctionState}. It provides a {@code State} value according to its
* function algorithm. Those implementations typically use {@code State} parameters.
*
* @param <T> the type of the {@code State} value
*/
public interface Function<T> {

T getValue();
Expand Down

0 comments on commit 0f9089e

Please sign in to comment.