Package net.sf.json.processors

Examples of net.sf.json.processors.DefaultValueProcessor


   * Test method for
   * {@link org.apache.shindig.social.core.util.NullDefaultValueProcessor#getDefaultValue(java.lang.Class)}.
   */
  @Test
  public void testGetDefaultValue() {
    DefaultValueProcessor defValue = new NullDefaultValueProcessor();
    assertNull(defValue.getDefaultValue(String.class));
    assertNull(defValue.getDefaultValue(List.class));
    assertNull(defValue.getDefaultValue(Map.class));
  }
View Full Code Here

TOP

Related Classes of net.sf.json.processors.DefaultValueProcessor

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.