Package de.iritgo.aktario.framework.dataobject.gui

Examples of de.iritgo.aktario.framework.dataobject.gui.CommandDescription


  }

  private CommandDescription createCommand(long controllerUniqueId, String commandId, String value, String iconId,
          String labelId, String description, boolean visible, boolean enabled)
  {
    CommandDescription cd = new CommandDescription();

    cd.setControllerUniqueId(controllerUniqueId);
    cd.setCommandId(commandId);
    cd.setValue(value);
    cd.setTextId(labelId);
    cd.setIconId(iconId);
    cd.setVisible(visible);
    cd.setEnabled(enabled);
    registerObject(cd);

    return cd;
  }
View Full Code Here

TOP

Related Classes of de.iritgo.aktario.framework.dataobject.gui.CommandDescription

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.