Package edu.neu.ccs.task.util

Examples of edu.neu.ccs.task.util.Decorator


 
  private void dumpPlan() {
    StringWriter sw = new StringWriter();
    Plan plan = agent.getTop();
    if (plan != null)
      plan.printTree(new PrintWriter(sw), true, new Decorator() {
        public String decorate(Object o) {
          return (o == agent.getFocus()) ? " <-focus" : "";
        }
      });
   
View Full Code Here


  public void _status(String ignored) {
    Plan top = agent.getTop();
    if (top == null)
      out.println("No current task");
    else
      top.printTree(out, verbose, new Decorator() {
        public String decorate(Object o) {
          return (o == agent.getFocus()) ? " <-focus" : "";
        }
      });
  }
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.util.Decorator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.