1 25 26 package fr.dyade.aaa.agent; 27 28 33 public class UnknownNotification extends Notification { 34 35 36 public AgentId agent; 37 38 public Notification not; 39 40 46 public UnknownNotification(AgentId agent, Notification not) { 47 this.agent = agent; 48 this.not = not; 49 } 50 51 59 public StringBuffer toString(StringBuffer output) { 60 output.append('('); 61 super.toString(output); 62 output.append(",agent=").append(agent); 63 output.append(",not=").append(not); 64 output.append(')'); 65 66 return output; 67 } 68 } 69 | Popular Tags |