summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2017-04-11 21:57:48 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2017-04-11 21:57:48 -0400
commit6c307cc6dfb8088281c1432814068f472d0a03d4 (patch)
treef1ec11d02d669e44ba800f48345f0c645a097329 /src/main/java/bjc/inflexion/nouns/InflectionAffix.java
parentc285b4480963e0ee8b8d32312c6a4c7c94dc2840 (diff)
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionAffix.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
index d8c8cb4..54588a2 100644
--- a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
+++ b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
@@ -17,7 +17,7 @@ package bjc.inflexion.nouns;
/**
* An affix attached to a word and used for inflection.
- *
+ *
* @author EVE
*
*/
@@ -25,30 +25,30 @@ public interface InflectionAffix {
/**
* Check if a word has this affix.
- *
+ *
* @param word
* The word to check.
- *
+ *
* @return Whether or not the word has the affix.
*/
boolean hasAffix(String word);
/**
* Remove the affix from a word.
- *
+ *
* @param word
* The word to remove the affix from.
- *
+ *
* @return The word with the affix removed.
*/
String deaffix(String word);
/**
* Apply this affix to a word.
- *
+ *
* @param word
* The word to apply the affix to.
- *
+ *
* @return The word with the affix applied.
*/
String affix(String word);