/***************************************
 * Word represents a Word and its available
 * manipulations
 *
 * @author << your name goes here >>
 * @version << your date goes here>>
 */
 public class Word
 {
    private String word; 
    
    /*************************************
     * This constructor takes in a String and
     * then enables users of the class to manipulate 
     * the String. 
     *
     * To instantiate a word object you would have 
     * new Word("someString");
     *
     * @param word The word that we want to represent
     */
     public Word(String inWord)
     {
         word = inWord;
     }
    
     // add all of the required methods here including 
     // the String manipulation methods from Toolkit.
     
     /****************************************
      * example method - do not include in your 
      * final version
      *
      * @return the length of this word
      ****************************************/
      public int getLength()
      {
         return word.length();
      }
}