Examples of IConverter


Examples of org.apache.wicket.util.convert.IConverter

          {
            Class<?> c = o.getClass();

            String s;

            IConverter converter = Application.get().getConverterLocator().getConverter(c);

            if (converter == null)
            {
              s = o.toString();
            }
            else
            {
              s = converter.convertToString(o, Session.get().getLocale());
            }

            out.print(quoteValue(s));
          }
        }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    Class<?> objectClass = displayValue == null ? null : displayValue.getClass();
    // Get label for choice
    String label = "";
    if (objectClass != null && objectClass != String.class)
    {
      @SuppressWarnings("rawtypes")
      IConverter converter = getConverter(objectClass);
      label = converter.convertToString(displayValue, getLocale());
    }
    else if (displayValue != null)
    {
      label = displayValue.toString();
    }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    if (modelObject != null)
    {
      // Get converter
      final Class<?> objectClass = modelObject.getClass();

      final IConverter converter = getConverter(objectClass);

      // Model string from property
      final String modelString = converter.convertToString(modelObject, getLocale());

      if (modelString != null)
      {
        // If we should escape the markup
        if (getFlag(FLAG_ESCAPE_MODEL_STRINGS))
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

   */
  public String getNodeValue(final TreeNode node)
  {
    Object result = PropertyResolver.getValue(propertyExpression, node);

    @SuppressWarnings("rawtypes")
    IConverter converter = getConverter();
    if (converter == null && result != null)
    {
      converter = Application.get().getConverterLocator().getConverter(result.getClass());
    }

    if (converter != null)
    {
      Locale locale = this.locale;
      if (locale == null)
      {
        locale = Session.get().getLocale();
      }

      @SuppressWarnings("unchecked")
      String string = converter.convertToString(result, locale);
      return string;
    }
    else
    {
      return result != null ? result.toString() : null;
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    Class<?> objectClass = displayValue == null ? null : displayValue.getClass();
    // Get label for choice
    String label = "";
    if (objectClass != null && objectClass != String.class)
    {
      @SuppressWarnings("rawtypes")
      IConverter converter = getConverter(objectClass);
      label = converter.convertToString(displayValue, getLocale());
    }
    else if (displayValue != null)
    {
      label = displayValue.toString();
    }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    Class<?> objectClass = (objectValue == null ? null : objectValue.getClass());

    String displayValue = "";
    if (objectClass != null && objectClass != String.class)
    {
      @SuppressWarnings("rawtypes")
      IConverter converter = getConverter(objectClass);
      displayValue = converter.convertToString(objectValue, getLocale());
    }
    else if (objectValue != null)
    {
      displayValue = objectValue.toString();
    }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

            // for String vars, e.g. {label}
            return (String)value;
          }
          else
          {
            IConverter converter = getConverter(value.getClass());
            if (converter == null)
            {
              return Strings.toString(value);
            }
            else
            {
              return converter.convertToString(value, getLocale());
            }
          }
        }
      }.toString();
    }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    // Get label for choice
    String label = "";

    if (objectClass != null && objectClass != String.class)
    {
      @SuppressWarnings("rawtypes")
      final IConverter converter = getConverter(objectClass);
      label = converter.convertToString(displayValue, getLocale());
    }
    else if (displayValue != null)
    {
      label = displayValue.toString();
    }
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    if (modelObject != null)
    {
      // Get converter
      final Class<?> objectClass = modelObject.getClass();

      final IConverter converter = getConverter(objectClass);

      // Model string from property
      final String modelString = converter.convertToString(modelObject, getLocale());

      if (modelString != null)
      {
        // If we should escape the markup
        if (getFlag(FLAG_ESCAPE_MODEL_STRINGS))
View Full Code Here

Examples of org.apache.wicket.util.convert.IConverter

    Class<?> objectClass = displayValue == null ? null : displayValue.getClass();
    // Get label for choice
    String label = "";
    if (objectClass != null && objectClass != String.class)
    {
      IConverter converter = getConverter(objectClass);
      label = converter.convertToString(displayValue, getLocale());
    }
    else if (displayValue != null)
    {
      label = displayValue.toString();
    }
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.