package test.wicket.autocomplete.pages;

import org.apache.wicket.PageParameters;
import org.apache.wicket.markup.html.WebPage;

/**
 * Respresents basic operations and state for ArgoWeb2 pages.
 */
public class BasePage extends WebPage{
   /**
    * Creates an instance of BasePage.
    */
   public BasePage() {
      this(null);
   }

   /**
    * Creates an instance of BasePage.
    * @param parameters A PageParameters instance with the parameters sent;
    */
   public BasePage(PageParameters parameters) {
      super(parameters);
      //Construct the language panel
      //Add the Left Menu Panel to the page's layout
   }
}
