(List<?> rows, Class<?> unitType, String
namespace, String name, Schema schema)
| 33 | @Expose private String mUnitTypeName; // only needed during serialization |
| 34 | |
| 35 | public BasicDDF(List<?> rows, Class<?> unitType, String |
| 36 | namespace, String name, Schema schema) throws DDFException { |
| 37 | this((DDFManager) null, (List<?>) rows, unitType, namespace, |
| 38 | name, |
| 39 | schema); |
| 40 | if (rows != null) mUnitType = unitType; |
| 41 | } |
| 42 | |
| 43 | public BasicDDF(DDFManager manager, List<?> rows, Class<?> unitType, |
| 44 | String namespace, String name, Schema |
nothing calls this directly
no test coverage detected