Package org.apache.wicket.util.value

Examples of org.apache.wicket.util.value.ValueMap


      urlFragment = urlFragment.substring(0, urlFragment.length() - 1);
    }

    if (urlFragment.length() == 0)
    {
      return new ValueMap(urlParameters != null ? urlParameters : Collections.EMPTY_MAP);
    }

    // Split into pairs
    final String[] pairs = urlFragment.split("/");

    // If we don't have an even number of pairs
    if (pairs.length % 2 != 0)
    {
      log.warn("URL fragment has unmatched key/value pairs, responding with 404. Fragment: " +
        urlFragment);
      throw new AbortWithWebErrorCodeException(404);
    }

    // Loop through pairs

    ValueMap parameters = new ValueMap();
    for (int i = 0; i < pairs.length; i += 2)
    {
      String value = pairs[i + 1];
      value = urlDecodePathComponent(value);
      parameters.add(pairs[i], value);
    }


    if (urlParameters != null)
    {
      parameters.putAll(urlParameters);
    }

    return parameters;
  }
View Full Code Here


  {
    if (attributes == null)
    {
      if ((copyOf == this) || (copyOf == null) || (copyOf.attributes == null))
      {
        attributes = new ValueMap();
      }
      else
      {
        attributes = new ValueMap(copyOf.attributes);
      }
    }
    return attributes;
  }
View Full Code Here

    dest.isMutable = true;
    dest.closes = closes;
    dest.copyOf = copyOf;
    if (attributes != null)
    {
      dest.attributes = new ValueMap(attributes);
    }
  }
View Full Code Here

    // Render the component without having rendered the page previously
    SimplePage page = new SimplePage();

    Label label = (Label)page.get("myLabel");
    assertNotNull(label);
    ValueMap attr = label.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myLabel", attr.getString("wicket:id"));

    Panel panel = (Panel)page.get("myPanel");
    assertNotNull(panel);
    attr = panel.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myPanel", attr.getString("wicket:id"));

    label = (Label)page.get("myPanel:label");
    assertNotNull(label);
    attr = label.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("label", attr.getString("wicket:id"));

    Border border = (Border)page.get("myBorder");
    assertNotNull(border);
    attr = border.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myBorder", attr.getString("wicket:id"));

    border = (Border)page.get("myBorder2");
    assertNotNull(border);
    attr = border.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myBorder2", attr.getString("wicket:id"));

    // do the same test twice. Igor reported a problem with that, so we have to test it.
    border = (Border)page.get("myBorder2");
    assertNotNull(border);
    attr = border.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myBorder2", attr.getString("wicket:id"));

    WebMarkupContainer container = (WebMarkupContainer)page.get("test");
    assertNotNull(container);
    attr = container.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("test", attr.getString("wicket:id"));

    label = (Label)page.get("test:myLabel2");
    assertNotNull(label);
    attr = label.getMarkupAttributes();
    assertNotNull(attr);
    assertEquals("myLabel2", attr.getString("wicket:id"));
  }
View Full Code Here

        "&").toString();

      decodedParamReplacement = WicketURLDecoder.QUERY_INSTANCE.decode(decodedParamReplacement);

      // Add ALL of the params from the decoded 'x' param
      ValueMap params = new ValueMap();
      RequestUtils.decodeParameters(decodedParamReplacement, params);
      parameterMap.putAll(params);

      // Rebuild the URL with the 'x' param removed
      int pos1 = url.indexOf("?x=");
View Full Code Here

  /**
   *
   */
  public void testGetStringPropertySubstitution()
  {
    ValueMap vm = new ValueMap();
    vm.put("user", "John Doe");
    IModel<ValueMap> model = new Model<ValueMap>(vm);
    Assert.assertEquals("Property substitution should occur", "Welcome, John Doe",
      localizer.getString("test.substitute", null, model, null));
  }
View Full Code Here

      Time time = resourceReference.lastModifiedTime();
      if (time != null)
      {
        if (parameters == null)
        {
          parameters = new ValueMap();
          parameters.put("wicket:lm", new Long(time.getMilliseconds()));
        }
      }
    }
View Full Code Here

      Time time = resourceReference.lastModifiedTime();
      if (time != null)
      {
        if (parameters == null)
        {
          parameters = new ValueMap();
          parameters.put("wicket:lm", new Long(time.getMilliseconds()));
        }
      }
    }
View Full Code Here

   * @return markup attributes
   */
  public final ValueMap getMarkupAttributes()
  {
    MarkupStream markupStream = locateMarkupStream();
    ValueMap attrs = new ValueMap(markupStream.getTag().getAttributes());
    attrs.makeImmutable();
    return attrs;
  }
View Full Code Here

   *
   * @return Parameters
   */
  protected ValueMap decodeParameters(String fragment, Map passedParameters)
  {
    ValueMap parameters = new ValueMap();

    if (passedParameters != null)
    {
      parameters.putAll(passedParameters);
    }

    return parameters;

  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.util.value.ValueMap

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.