Package org.wicketstuff.facebook

Examples of org.wicketstuff.facebook.MissingFacebookRootException


  protected void onRender()
  {
    final ComponentHierarchyIterator visitChildren = getPage().visitChildren(
      FacebookRootProvider.class);
    if (!visitChildren.hasNext())
      throw new MissingFacebookRootException();

    if (findPage() != null)
    {
      AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class);
      if (target != null)
View Full Code Here


  private void checkFacebookRoot(final Component component)
  {
    final ComponentHierarchyIterator visitChildren = component.getPage().visitChildren(
      FacebookRootProvider.class);
    if (!visitChildren.hasNext())
      throw new MissingFacebookRootException();
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.facebook.MissingFacebookRootException

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.