Package org.apache.wicket.model

Examples of org.apache.wicket.model.CompoundPropertyModel


    private static final long serialVersionUID = -5700835271577167173L;

    public ResultFragment(String id, String markupId, MarkupContainer markupContainer) {

      super(id, markupId, markupContainer);
      this.setModel(new CompoundPropertyModel(ListSubSegmentsByIndex.this));

      // create and add components

      this.add(new SubSegmentsListPanel("subSegments"));
      this.add(new ResetForm("resetForm"));
View Full Code Here


  public SubSegmentDetails(SubSegment subSegment) {

    if (subSegment == null) throw new NullPointerException();
   
    this.setTitle(this.getString("title"));
    this.setModel(new CompoundPropertyModel(this));

    final Store openXRIStore = ((OpenXRIAdminApplication) this.getApplication()).getOpenXRIStore();

    this.subSegment = subSegment;
View Full Code Here

    private Map<String, String> attributes;

    public AttributesForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(this));

      // create and add components

      this.add(new MapPanel("attributes"));
    }
View Full Code Here

    private String index;

    public IndexForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(this));

      // create and add components

      this.add(new TextField("index"));
    }
View Full Code Here

    private Authority authority;

    public CreateAliasSubSegmentForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(this));

      // create

      AllAuthoritiesModel allAuthoritiesModel = new AllAuthoritiesModel();
View Full Code Here

    private static final long serialVersionUID = -1713315514251822937L;

    public RequestForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(new URIMapperRequest()));

      // create and add components

      this.add(new TextField("path"));
      this.add(new TextField("query"));
View Full Code Here

    private static final long serialVersionUID = 6148514263284960328L;

    public RequestResultFragment(String id, String markupId, MarkupContainer markupContainer) {

      super(id, markupId, markupContainer);
      this.setModel(new CompoundPropertyModel(new URIMapperResult()));

      // create and add components

      this.add(new Label("namespace"));
      this.add(new Label("query"));
View Full Code Here

    private String namespace;

    public CompleteForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(this));

      // create and add components

      this.add(new TextField("namespace").setLabel(new Model("Namespace")).setRequired(true));
    }
View Full Code Here

    private String uri;

    public CompleteResultFragment(String id, String markupId, MarkupContainer markupContainer) {

      super(id, markupId, markupContainer);
      this.setModel(new CompoundPropertyModel(this));

      // create and add components

      this.add(new Label("uri"));
    }
View Full Code Here

    private String xri;

    public FindAuthorityForm(String id) {

      super(id);
      this.setModel(new CompoundPropertyModel(this));

      // create and add components

      this.add(new TextField("xri"));
    }
View Full Code Here

TOP

Related Classes of org.apache.wicket.model.CompoundPropertyModel

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.