@param data The DDF data @param namespace The namespace to place this DDF in. If null, it will be picked up from the DDFManager's current namespace. @param name The name for this DDF. If null, it will come from the given schema. If that's null, a UUID-based name will
(DDFManager manager, Object data, Class<?>[] typeSpecs,
String namespace, String name, Schema schema)
| 97 | * @throws DDFException |
| 98 | */ |
| 99 | public DDF(DDFManager manager, Object data, Class<?>[] typeSpecs, |
| 100 | String namespace, String name, Schema schema) |
| 101 | throws DDFException { |
| 102 | |
| 103 | this.initialize(manager, data, typeSpecs, namespace, name, |
| 104 | schema); |
| 105 | } |
| 106 | |
| 107 | abstract public DDF copy() throws DDFException; |
| 108 |
nothing calls this directly
no test coverage detected