import java.util.Vector; public class MyVect { private Vector theStrings; /* FROM HERE - FROM HERE - FROM HERE - FROM HERE - FROM HERE */ private int totalNumberOfChars() { } private void reverseVector() { } private boolean contains(String str) { } /* You can use the yourMainMethod method to do any testing you'd like to do (none is also allowed). It will be automatically called when you run the class without any command line parameters. */ public static void yourMainMethod() { } /* TO HERE - TO HERE - TO HERE - TO HERE - TO HERE - TO HERE */ public MyVect() { theStrings = new Vector(); } public String toString() { String str=""; for (int i=0 ; i