Vector Assignment

Make an application that allows the user to enter strings in a text field.  (all components are to be swing components)

These strings should be added to a vector via an add button. 

There must be a remove button so that the user can remove any string in the text field from the vector.

A text area should display the current contents of the vector via an enumeration.

Below is an example without remove implemented.