throw new JSONException( clazz.getName() + " does not have a zero argument constructor!" );
}
json = clazz.getAnnotation( JSON.class );
if ( json != null ) {
String[] ignores = json.ignore();
for ( int i=0; i<ignores.length; ++i) {
json_om.ignore.add( ignores[ i ] );
}
String [] nullables = json.nullable();
for ( int i=0; i<nullables.length; ++i ) {