diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-12-12 19:13:01 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-12-12 19:18:19 +0100 |
commit | 716fc32741e40b5ee9072be8ad642fb9d63ce47d (patch) | |
tree | e22c02cfa168f3903c2f65ebfcac11e770ed800e /jgvariant-core/src/main | |
parent | a7c474dc4eedcbb249a7bc42f147511341b034f0 (diff) |
Add missing Javadocs.
Change-Id: Ia96c370f564cab9802c94a9d6fad77590dcac2a5
Diffstat (limited to 'jgvariant-core/src/main')
-rw-r--r-- | jgvariant-core/src/main/java/eu/mulk/jgvariant/core/Decoder.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jgvariant-core/src/main/java/eu/mulk/jgvariant/core/Decoder.java b/jgvariant-core/src/main/java/eu/mulk/jgvariant/core/Decoder.java index 60cef3e..74d569d 100644 --- a/jgvariant-core/src/main/java/eu/mulk/jgvariant/core/Decoder.java +++ b/jgvariant-core/src/main/java/eu/mulk/jgvariant/core/Decoder.java @@ -116,7 +116,8 @@ public abstract class Decoder<T> { /** * Creates a new {@link Decoder} from an existing one by applying a function to the result. * - * @param function the function to apply. + * @param decodingFunction the function to apply when decoding. + * @param encodingFunction the function to apply when encoding. * @return a new, decorated {@link Decoder}. * @see java.util.stream.Stream#map */ @@ -127,7 +128,8 @@ public abstract class Decoder<T> { /** * Creates a new {@link Decoder} from an existing one by applying a function to the input. * - * @param function the function to apply. + * @param decodingFunction the function to apply when decoding. + * @param encodingFunction the function to apply when encoding. * @return a new, decorated {@link Decoder}. * @see java.util.stream.Stream#map */ |