Package org.wicketstuff.jquery.demo.lavalamp

Source Code of org.wicketstuff.jquery.demo.lavalamp.BPage

package org.wicketstuff.jquery.demo.lavalamp;

import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.request.resource.PackageResourceReference;
import org.apache.wicket.request.resource.ResourceReference;
import org.wicketstuff.jquery.lavalamp.LavaLampMenuPanel;

public final class BPage extends WebPage
{

  private static final long serialVersionUID = 1L;

  public BPage()
  {
    add(new LavaLampMenuPanel("lavalampMenu", Utils.newMenuListWithLinkStyles())
    {
      private static final long serialVersionUID = 1L;

      @Override
      protected ResourceReference getCssResourceReference()
      {
        return new PackageResourceReference(BPage.class, "bpage.css");
      }
    });
  }

}
TOP

Related Classes of org.wicketstuff.jquery.demo.lavalamp.BPage

TOP
Copyright © 2018 www.massapi.com. 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.