summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/Noun.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/Noun.java
parentc285b4480963e0ee8b8d32312c6a4c7c94dc2840 (diff)
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/Noun.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/Noun.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/Noun.java b/src/main/java/bjc/inflexion/nouns/Noun.java
index 4f785ad..5ab5009 100644
--- a/src/main/java/bjc/inflexion/nouns/Noun.java
+++ b/src/main/java/bjc/inflexion/nouns/Noun.java
@@ -17,7 +17,7 @@ package bjc.inflexion.nouns;
/**
* A noun attached to an inflection.
- *
+ *
* @author EVE
*
*/
@@ -30,21 +30,21 @@ public class Noun {
/**
* Create a new noun from a word and inflection.
- *
+ *
* @param wrd
* The word for the noun.
- *
+ *
* @param inflction
* The inflection for the word.
*/
- public Noun(String wrd, NounInflection inflction) {
+ public Noun(final String wrd, final NounInflection inflction) {
word = wrd;
inflection = inflction;
}
/**
* Get the input noun.
- *
+ *
* @return The noun, as input.
*/
public String getWord() {
@@ -53,7 +53,7 @@ public class Noun {
/**
* Get the inflection for this noun.
- *
+ *
* @return The inflection for this noun.
*/
public NounInflection getInflection() {
@@ -62,7 +62,7 @@ public class Noun {
/**
* Check if this noun is singular.
- *
+ *
* @return Whether or not the noun is singular.
*/
public boolean isSingular() {
@@ -71,7 +71,7 @@ public class Noun {
/**
* Check if this noun is plural.
- *
+ *
* @return Whether or not this noun is plural.
*/
public boolean isPlural() {
@@ -80,7 +80,7 @@ public class Noun {
/**
* Get the singular form of this noun.
- *
+ *
* @return The singular form of this noun.
*/
public String singular() {
@@ -89,7 +89,7 @@ public class Noun {
/**
* Get the plural form of this noun.
- *
+ *
* @return The plural form of this noun.
*/
public String plural() {
@@ -103,7 +103,7 @@ public class Noun {
/**
* Get the modern plural form of this noun.
- *
+ *
* @return The modern plural form of this noun.
*/
public String modernPlural() {
@@ -112,7 +112,7 @@ public class Noun {
/**
* Get the classical plural form of this noun.
- *
+ *
* @return The classical plural form of this noun.
*/
public String classicalPlural() {