4748495051525354
public void setContainedTypeName(String containedType) { try { this.containedType = Class.forName(containedType); } catch (ClassNotFoundException e) { throw new UnableToSetTypeException("unable to set containedType "+containedType, e); } }
106107108109110111112113
public void setTypeName(String effectiveType) { try { setType(Class.forName(effectiveType)); } catch (ClassNotFoundException e) { throw new UnableToSetTypeException("unable to set containedType "+containedType, e); } }