Examples of PageLink


Examples of org.apache.wicket.markup.html.link.PageLink

    log.debug("Authorities: " + this.authorities.size());

    // create and add components

    this.add(new AuthoritiesListPanel("authorities"));
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    this.resultFragment = new ResultFragment("resultPanel", "resultFragment", this);
    this.resultFragment.setVisible(false);
    this.add(this.resultFragment);
    this.add(new IndexForm("indexForm"));
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    // create and add components

    this.form = new CreateSubSegmentForm("createSubSegmentForm");
   
    this.add(this.form);
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    // create and add components

    this.form = new CreateAuthorityForm("createAuthorityForm");
   
    this.add(this.form);
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    this.setTitle(this.getString("title"));

    // create and add components

    this.add(new PageLink("createRootNamespaceLink", CreateRootNamespace.class));
    this.add(new PageLink("listRootNamespacesLink", ListRootNamespaces.class));
    this.add(new PageLink("listAuthoritiesLink", ListAuthorities.class));
    this.add(new PageLink("listSubSegmentsLink", ListSubSegments.class));
    this.add(new PageLink("createSubSegmentLink", CreateSubSegment.class));

    this.add(new PageLink("createAuthorityLink", CreateAuthority.class));
    this.add(new PageLink("createAliasSubSegmentLink", CreateAliasSubSegment.class));
    this.add(new PageLink("listAuthoritiesByIndexLink", ListAuthoritiesByIndex.class));
    this.add(new PageLink("listSubSegmentsByIndexLink", ListSubSegmentsByIndex.class));
    this.add(new PageLink("listAuthoritiesByPathLink", ListAuthoritiesByPath.class));
    this.add(new PageLink("statisticsLink", Statistics.class));
    this.add(new PageLink("resetLink", Reset.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    this.resultFragment = new ResultFragment("resultPanel", "resultFragment", this);
    this.resultFragment.setVisible(false);
    this.add(this.resultFragment);
    this.add(new IndexForm("indexForm"));
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

      this.add(new EmptyComponent("graph"));
    }

    this.add(new Label("subSegmentId"));
    this.add(new Label("name"));
    this.add(new PageLink("createAliasSubSegmentLink", new IPageLink() {

      private static final long serialVersionUID = 4603762735183925968L;

      public Page getPage() {

        return(new CreateAliasSubSegment(SubSegmentDetails.this.parentAuthority, SubSegmentDetails.this.authority));
      }

      public Class<?> getPageIdentity() {

        return(CreateAliasSubSegment.class);
      }
    }));
   
    if (this.authority != null) {

      this.add(new PageLink("authorityLink", new IPageLink() {

        private static final long serialVersionUID = 1L;

        public Page getPage() {

          return(new AuthorityDetails(SubSegmentDetails.this.authority));
        }

        public Class<?> getPageIdentity() {

          return(SubSegmentDetails.class);
        }
      }));
    } else {

      this.add(new EmptyComponent("authorityLink"));
    }

    if (this.parentAuthority != null) {

      this.add(new PageLink("parentAuthorityLink", new IPageLink() {

        private static final long serialVersionUID = 1L;

        public Page getPage() {

          return(new AuthorityDetails(SubSegmentDetails.this.parentAuthority));
        }

        public Class<?> getPageIdentity() {

          return(SubSegmentDetails.class);
        }
      }));
    } else {

      this.add(new EmptyComponent("parentAuthorityLink"));
    }
    this.add(new AttributesForm("attributesForm"));
    this.add(new IndexForm("indexForm"));
    this.add(new DeleteForm("deleteForm"));
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

    // create and add components

    this.form = new CreateAliasSubSegmentForm("createAliasSubSegmentForm");
   
    this.add(this.form);
    this.add(new PageLink("backLink", Index.class));
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

      @Override
      protected void populateItem(ListItem item) {

        final SubSegment subSegment = (SubSegment) item.getModelObject();

        PageLink link = new PageLink("link", new IPageLink() {

          private static final long serialVersionUID = -465660455825345856L;

          public Page getPage() {
           
            return(new SubSegmentDetails(subSegment));
          }

          public Class<?> getPageIdentity() {
           
            return(SubSegmentDetails.class);
          }
         
        });
       
        link.add(new Label("id", subSegment.getId().toString()));
        link.add(new Label("name", subSegment.getName()));
        item.add(link);
      }
    });
  }
View Full Code Here

Examples of org.apache.wicket.markup.html.link.PageLink

      @Override
      protected void populateItem(ListItem item) {

        final Authority authority = (Authority) item.getModelObject();

        PageLink link = new PageLink("link", new IPageLink() {

          private static final long serialVersionUID = 8137543413717092367L;

          public Page getPage() {
           
            return(new AuthorityDetails(authority));
          }

          public Class<?> getPageIdentity() {
           
            return(AuthorityDetails.class);
          }
        });
       
        link.add(new Label("id", authority.getId().toString()));
        item.add(link);
      }
    });
  }
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.