Package net.fqsc.inscriptions.view.component.display

Examples of net.fqsc.inscriptions.view.component.display.ContentPanel


  public HomePage()
  {
    super();

    this.add(new HeaderPanel("HeaderPanel"));
    this.add(new ContentPanel("ContentPanel"));

  }
View Full Code Here


  public HomePage(final PrincipalContentContainer.ContentType principalContent)
  {
    super();

    this.add(new HeaderPanel("HeaderPanel"));
    this.add(new ContentPanel("ContentPanel", principalContent));
  }
View Full Code Here

  public HomePage(final Class<? extends BasePanel> panelClass, final Map parameters)
  {
    super();

    this.add(new HeaderPanel("HeaderPanel"));
    this.add(new ContentPanel("ContentPanel", panelClass, parameters));
  }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.view.component.display.ContentPanel

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.