Package org.apache.wicket.spring

Examples of org.apache.wicket.spring.Bean


   * https://issues.apache.org/jira/browse/WICKET-4149
   */
  @Test
  public void beanInjectedInBehavior()
  {
    ctx.putBean("mrBean", new Bean());

    // with no name specified we get IllegalStateException
    Page page = tester.startPage(new AnnotatedFieldInBehaviorPage());
    TestBehavior behavior = (TestBehavior)page.getBehaviorById(0);
    assertNotNull(behavior.getBean());
View Full Code Here

TOP

Related Classes of org.apache.wicket.spring.Bean

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.