Package net.sf.jeters.componentInterface

Examples of net.sf.jeters.componentInterface.UIComponent


             
      /* show the ui-specific "home view" */
     
      if ( showHomeView ) {
       
        UIComponent uiComp = componentManager.getUIComponent();
       
        if (uiComp instanceof UIComponent_HomeView) {
     
          ((UIComponent_HomeView)uiComp)
            .presentHomeView(componentManager);
View Full Code Here


   * runs the component chain, i.e. the component actions in the series of
   * input -> replacer1 -> replacer2 -> ... -> replacerN -> output
   */
  private void runComponentChain() {   

    UIComponent uiComp = componentManager.getUIComponent();
    InputComponent<?> inputComp = componentManager.getInputComponent();
    OutputComponent<?> outputComp = componentManager.getOutputComponent();
    List<ReplacerComponent<?,?>> replacerComps =
      componentManager.getReplacerComponents();

View Full Code Here

   *
   * @param message  error message to print
   */
  private void outputError(String message) {
   
    UIComponent uiComponent = componentManager.getUIComponent();
   
    if (uiComponent != null) {
      uiComponent.request(new UIRequest_Output(message));
    } else {
      System.err.println(message);
    }
   
    //TODO: log
View Full Code Here

TOP

Related Classes of net.sf.jeters.componentInterface.UIComponent

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.