Package org.apache.wicket.queueing.nestedpanels

Examples of org.apache.wicket.queueing.nestedpanels.InnerPanel


  @Test
  public void nestedPanels()
  {
    MarkupContainer r = new R(), s = new S();

    Panel innerPanel = new InnerPanel("inner");
    innerPanel.queue(s);

    Panel outerPanel = new OuterPanel("outer");

    outerPanel.queue(r, innerPanel);
View Full Code Here

TOP

Related Classes of org.apache.wicket.queueing.nestedpanels.InnerPanel

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.