Class SimpleMessage

  • Direct Known Subclasses:
    LocatedMessage

    public class SimpleMessage
    extends Message
    A base class for compilation messages.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Object data  
      protected java.lang.String message  
      protected ProcessingUnit owner  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()  
      void write​(java.io.PrintWriter writer, Janitor janitor)
      Writes the message to the specified PrintWriter.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • message

        protected java.lang.String message
      • data

        protected java.lang.Object data
    • Constructor Detail

      • SimpleMessage

        public SimpleMessage​(java.lang.String message,
                             ProcessingUnit source)
      • SimpleMessage

        public SimpleMessage​(java.lang.String message,
                             java.lang.Object data,
                             ProcessingUnit source)
    • Method Detail

      • write

        public void write​(java.io.PrintWriter writer,
                          Janitor janitor)
        Description copied from class: Message
        Writes the message to the specified PrintWriter. The supplied ProcessingUnit is the unit that holds this Message.
        Specified by:
        write in class Message
      • getMessage

        public java.lang.String getMessage()