summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionAffix.java20
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
+}