1 package org.catacomb.interlish.structure; 2 3 import org.catacomb.report.Reporter; 4 5 6 7 public interface InfoLog extends Receiver, Producer, Reporter { 8 9 void addInfoMessage(InfoMessage im); 10 11 void addInfoMessage(int level, String ctxt, String msg); 12 13 String getPlainText(); 14 15 String getHTML(); 16 17 void setLogNotificand(LogNotificand ln); 18 19 void removeLogNotificand(LogNotificand ln); 20 21 void clear(); 22 23 }