diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 21:34:29 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 21:34:29 -0300 |
| commit | 235208946ceb2bf0f422956a3ebc0ebb88ba28b6 (patch) | |
| tree | e50faa94428972c6c23a605ffb4ec88d28f73cba /src/main/java/bjc/inflexion/nouns/InflectionAffix.java | |
| parent | 46cb1f6c030991d314d0ef1fafa53e53ef3e03c9 (diff) | |
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java')
| -rw-r--r-- | src/main/java/bjc/inflexion/nouns/InflectionAffix.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java index 54588a2..d224340 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java @@ -19,17 +19,16 @@ package bjc.inflexion.nouns; * An affix attached to a word and used for inflection. * * @author EVE - * */ public interface InflectionAffix { - /** * Check if a word has this affix. * * @param word - * The word to check. + * The word to check. * - * @return Whether or not the word has the affix. + * @return + * Whether or not the word has the affix. */ boolean hasAffix(String word); @@ -37,9 +36,10 @@ public interface InflectionAffix { * Remove the affix from a word. * * @param word - * The word to remove the affix from. + * The word to remove the affix from. * - * @return The word with the affix removed. + * @return + * The word with the affix removed. */ String deaffix(String word); @@ -47,10 +47,10 @@ public interface InflectionAffix { * Apply this affix to a word. * * @param word - * The word to apply the affix to. + * The word to apply the affix to. * - * @return The word with the affix applied. + * @return + * The word with the affix applied. */ String affix(String word); - -}
\ No newline at end of file +} |
