Ejemplo n.º 1
0
Archivo: List.java Proyecto: znerd/xins
  /**
   * Converts the specified <code>ItemList</code> to a string.
   *
   * @param value the value to convert, can be <code>null</code>.
   * @return the textual representation of the value, or <code>null</code> if and only if <code>
   *     value == null</code>.
   */
  public String toString(ItemList value) {

    // Short-circuit if the argument is null
    if (value == null) {
      return null;
    }

    // Use a buffer to create the string
    StringBuffer buffer = new StringBuffer(255);

    // Iterate over the list
    int listSize = value.getSize();
    for (int i = 0; i < listSize; i++) {
      if (i != 0) {
        buffer.append('&');
      }

      Object nextItem = value.getItem(i);
      String stringItem;
      try {
        stringItem = _itemType.toString(nextItem);
      } catch (Exception ex) {

        // Should never happens as only add() is able to add items in the list.
        throw new IllegalArgumentException("Incorrect value for type: " + nextItem);
      }
      buffer.append(URLEncoding.encode(stringItem));
    }

    return buffer.toString();
  }
Ejemplo n.º 2
0
Archivo: List.java Proyecto: znerd/xins
  @Override
  protected final Object fromStringImpl(String string) throws TypeValueException {

    // Construct a ItemList to store the values in
    ItemList list = createList();

    // Separate the string by ampersands
    StringTokenizer tokenizer = new StringTokenizer(string, "&");
    while (tokenizer.hasMoreTokens()) {
      String token = tokenizer.nextToken();
      try {
        String itemString = URLEncoding.decode(token);
        Object item = _itemType.fromString(itemString);
        list.addItem(item);
      } catch (FormatException fe) {
        throw new TypeValueException(this, string, fe.getReason());
      } catch (IllegalArgumentException iae) {
        throw Utils.logProgrammingError(iae);
      }
    }

    return list;
  }
Ejemplo n.º 3
0
Archivo: List.java Proyecto: znerd/xins
  @Override
  protected final void checkValueImpl(String value) throws TypeValueException {

    // Separate the string by ampersands
    StringTokenizer tokenizer = new StringTokenizer(value, "&");
    while (tokenizer.hasMoreTokens()) {

      String token = tokenizer.nextToken();
      try {
        _itemType.checkValue(URLEncoding.decode(token));

        // Handle URL decoding error
      } catch (FormatException cause) {
        throw new TypeValueException(this, value, cause);

        // Item type does not accept the item
      } catch (TypeValueException cause) {
        throw new TypeValueException(this, value, cause);

      } catch (IllegalArgumentException cause) { // TODO: Review, should we really catch this one?
        throw new TypeValueException(this, value, cause);
      }
    }
  }