/** * Removes the specified WebItemListener to receive WebItemEvents from this WebTextArea. * WebItemEvents occur when a user changes the value in the textarea field of this WebTextArea. * * @param listener the WebItemListener */ public void removeWebItemListener(final WebItemListener listener) { WebItemEvent.removeListener(this, listener); }
/** * Adds the specified WebItemListener to receive WebItemEvents from this WebTextArea. * WebItemEvents occur when a user changes the value in the textarea field of this WebTextArea. * * @param listener the WebItemListener */ public void addWebItemListener(final WebItemListener listener) { WebItemEvent.addListener(this, listener); }