コード例 #1
0
 // Getters and setters for the next handler
 public void setNext(MessageParser p)
 {
     this.nextHandler = p;
 }
コード例 #2
0
 // Instantiating the message parser
 public MessageParser(MainGrid active_grid)
 {
     this.active_grid = active_grid;
     this.nextHandler = null;
 }