Package ru.runa.specific.of.RunaOrgStructureImporter

Examples of ru.runa.specific.of.RunaOrgStructureImporter.Actor


    if (currentDefinition != null && currentDefinition.getParameters().size() > 0) {
      value = currentDefinition.getParameters().get(0).getValue();
    }
    try {
      int actorId = Integer.parseInt(value);
      Actor actor = getActorByCode(actorId);
      if (actor != null) {
        value = actor.name;
        selectionText.setForeground(actor.getForeground());
      }
    } catch (Exception e) {
      // ignore for presentation
    }
    selectionText.setText(value);
View Full Code Here

TOP

Related Classes of ru.runa.specific.of.RunaOrgStructureImporter.Actor

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.