Package uk.ac.osswatch.simal.wicket

Examples of uk.ac.osswatch.simal.wicket.BasePage


   * correct type based on the type of the IResource it is for.
   * @param targetResource
   * @return subtype of BasePage for the specific targetResource
   */
  private BasePage generateResponsePage(IResource targetResource) {
    BasePage targetClass = null;

    if (targetResource instanceof IProject) {
      targetClass = new ProjectDetailPage((IProject) targetResource);
    } else if (targetResource instanceof IPerson) {
      targetClass = new PersonDetailPage((IPerson) targetResource);
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.wicket.BasePage

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.