* a container for the text and the type of a message
* MessageEvents are created by MessageHandler and can be received by any
* MessageListener, which is added to MessageHandler;
- * @see org.apache.fop.MessageListener MessageListener
+ * @see org.apache.fop.messaging.MessageListener MessageListener
*
*/
/**
* adds a MessageListener which listens for MessageEvents
- * @param MessageListener the listener to add
+ * @param listener the MessageListener to add
*/
public static void addListener(MessageListener listener) {
listeners.addElement(listener);
/**
* removes a MessageListener
- * @param MessageListener the listener to remove
+ * @param listener the MessageListener to remove
*/
public static void removeListener(MessageListener listener) {
listeners.removeElement(listener);