Package org.araneaframework.framework.container

Examples of org.araneaframework.framework.container.StandardWidgetAdapterService


  private MockEventfulStandardWidget widget;
 
  public void setUp() throws Exception {
    widget = new MockEventfulStandardWidget();
   
    adapter = new StandardWidgetAdapterService();
    adapter.setChildWidget(widget);
    MockLifeCycle.begin(adapter);
  }
View Full Code Here


    assertFalse(widget.getEventProcessed());
    assertFalse(widget.getActionCalled());
  }
 
  public void testActionPropagates() throws Exception {
    adapter = new StandardWidgetAdapterService() {
      public boolean propagateAsAction(InputData input) {
        return true;
      }
    };
    widget = new MockEventfulStandardWidget();
View Full Code Here

TOP

Related Classes of org.araneaframework.framework.container.StandardWidgetAdapterService

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.