Package com.projity.undo

Examples of com.projity.undo.CommandInfo


      return null;
    return lastGraphicManager.currentFrame.getProject();
  }

  public void addHistory(String command,Object[] args){
    history.add(new CommandInfo(command,args));
  }
View Full Code Here


  public void addHistory(String command,Object[] args){
    history.add(new CommandInfo(command,args));
  }
  public void addHistory(String command){
    history.add(new CommandInfo(command,null));
  }
View Full Code Here

      return null;
    return lastGraphicManager.currentFrame.getProject();
  }

  public void addHistory(String command,Object[] args){
    history.add(new CommandInfo(command,args));
  }
View Full Code Here

  public void addHistory(String command,Object[] args){
    history.add(new CommandInfo(command,args));
  }
  public void addHistory(String command){
    history.add(new CommandInfo(command,null));
  }
View Full Code Here

TOP

Related Classes of com.projity.undo.CommandInfo

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.