Package org.apache.wicket.examples.base.annot

Examples of org.apache.wicket.examples.base.annot.ExamplePage


   *
   * @return the title tag value
   */
  public String getTitle()
  {
    ExamplePage examplePage = getClass().getAnnotation(ExamplePage.class);
    if (examplePage != null)
      return examplePage.title() + " — Apache Wicket Examples";
    return "Apache Wicket Examples";
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.examples.base.annot.ExamplePage

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.