diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-11 21:57:48 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-11 21:57:48 -0400 |
| commit | 6c307cc6dfb8088281c1432814068f472d0a03d4 (patch) | |
| tree | f1ec11d02d669e44ba800f48345f0c645a097329 /src/main/java/bjc/inflexion/nouns/NounInflection.java | |
| parent | c285b4480963e0ee8b8d32312c6a4c7c94dc2840 (diff) | |
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/NounInflection.java')
| -rw-r--r-- | src/main/java/bjc/inflexion/nouns/NounInflection.java | 42 |
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. */ |
