Package edu.isi.karma.controller.command

Examples of edu.isi.karma.controller.command.CommandPreferences


  /**
   * In the future we may need to keep track of user info.
   */
  protected Workspace(String id) {
    super(id);
    commandPreferences = new CommandPreferences(this.getId());
    commandPreferencesId=this.getId();
  }
View Full Code Here


    commandPreferencesId=this.getId();
  }
 
  protected Workspace(String id, String cachedPreferencesId) {
    super(id);
    this.commandPreferences = new CommandPreferences(cachedPreferencesId);
    this.commandPreferencesId = cachedPreferencesId;
  }
View Full Code Here

TOP

Related Classes of edu.isi.karma.controller.command.CommandPreferences

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.