Package org.apache.wicket

Examples of org.apache.wicket.Component.findParent()


  {
    if (form == null)
    {
      // try to find form in the hierarchy of owning component
      Component component = getComponent();
      form = component.findParent(Form.class);
      if (form == null)
      {
        throw new IllegalStateException(
          "form was not specified in the constructor and cannot "
            + "be found in the hierarchy of the component this behavior "
View Full Code Here

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.