/**
* Notifies listeners of a change to the text area
*/
void fireActionEvent() {
if(actionListeners != null) {
ActionEvent evt = new ActionEvent(this);
for(int iter = 0 ; iter < actionListeners.size() ; iter++) {
ActionListener a = (ActionListener)actionListeners.elementAt(iter);
a.actionPerformed(evt);
}
}