summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/NounInflection.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/NounInflection.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/NounInflection.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/NounInflection.java b/src/main/java/bjc/inflexion/nouns/NounInflection.java
index 9e6f4d4..142968f 100644
--- a/src/main/java/bjc/inflexion/nouns/NounInflection.java
+++ b/src/main/java/bjc/inflexion/nouns/NounInflection.java
@@ -17,29 +17,29 @@ package bjc.inflexion.nouns;
/**
* Interface for inflecting nouns.
- *
+ *
* @author EVE
*
*/
public interface NounInflection {
/**
* Check if a noun matches this inflection.
- *
+ *
* @param noun
* The noun to check on this inflection.
- *
+ *
* @return Whether or not the noun belongs to the inflection.
*/
public boolean matches(String noun);
/**
* Check if a noun for this inflection is singular or not.
- *
+ *
* @param noun
* The noun to check for singularity.
- *
+ *
* @return Whether or not the noun is singular.
- *
+ *
* @throws InflectionException
* If the noun isn't part of this inflection.
*/
@@ -47,12 +47,12 @@ public interface NounInflection {
/**
* Check if a noun for this inflection is plural or not.
- *
+ *
* @param noun
* The noun to check for plurality.
- *
+ *
* @return Whether or not the noun is plural.
- *
+ *
* @throws InflectionException
* If the noun isn't part of this inflection.
*/
@@ -60,12 +60,12 @@ public interface NounInflection {
/**
* Convert a singular noun to a plural noun.
- *
+ *
* @param plural
* The plural noun to inflect to a singular form.
- *
+ *
* @return The singular form of the noun.
- *
+ *
* @throws InflectionException
* If the noun isn't part of the inflection.
*/
@@ -73,12 +73,12 @@ public interface NounInflection {
/**
* Convert a singular noun to a plural noun.
- *
+ *
* @param singular
* The singular noun to inflect to a plural form.
- *
+ *
* @return The plural form of the noun.
- *
+ *
* @throws InflectionException
* If the noun isn't part of the inflection.
*/
@@ -86,12 +86,12 @@ public interface NounInflection {
/**
* Convert a singular noun to a modern plural noun.
- *
+ *
* @param singular
* The singular noun to inflect to a modern plural form.
- *
+ *
* @return The modern plural form of the noun.
- *
+ *
* @throws InflectionException
* If the noun isn't part of the inflection.
*/
@@ -99,13 +99,13 @@ public interface NounInflection {
/**
* Convert a singular noun to a classical plural noun.
- *
+ *
* @param singular
* The singular noun to inflect to a classical plural
* form.
- *
+ *
* @return The classical plural form of the noun.
- *
+ *
* @throws InflectionException
* If the noun isn't part of the inflection.
*/