Package eu.planets_project.ifr.core.wdt.gui.faces

Examples of eu.planets_project.ifr.core.wdt.gui.faces.TemplateContainer


  /*
  * @return the currently selected workflowBean implementation
  */
  protected WorkflowBean getCurrentWorkflowBean() {
    TemplateContainer templateContainer = (TemplateContainer) JSFUtil.getManagedObject("templateContainer");
    WFTemplate currentTemplate = templateContainer.getCurrentTemplate();
    WorkflowBean wfBean = (WorkflowBean) JSFUtil.getManagedObject(currentTemplate.getBeanInstance());
    return wfBean;
  }
View Full Code Here


 
  /*
  * @return true if a workflowBean is selected
  */
  public boolean isWorkflowBeanSelected() {
    TemplateContainer templateContainer = (TemplateContainer) JSFUtil.getManagedObject("templateContainer");
    if(templateContainer.getCurrentTemplate() == null) return false;
    return true;
  }
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.wdt.gui.faces.TemplateContainer

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.