1 package org.kuali.student.r2.common.assembler; 2 3 /** 4 * Created with IntelliJ IDEA. 5 * User: Charles 6 * Date: 7/9/12 7 * Time: 1:30 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public interface DynAttrConverter<NativeType> { 11 // Convert to a string 12 public String convertNativeValueToString(NativeType nativeType); 13 14 // Convert from a string 15 public NativeType convertStringValueToNative(String s); 16 }