Skip to content

Instantly share code, notes, and snippets.

@pscollins
Created July 29, 2014 21:35
Show Gist options
  • Save pscollins/34c636bee69282affa93 to your computer and use it in GitHub Desktop.
Save pscollins/34c636bee69282affa93 to your computer and use it in GitHub Desktop.
error part 1
public class HDF5CompoundDSBridgeFactory {
private HDF5CompoundType type;
private IHDF5CompoundWriter writer;
private long startSize;
private int chunkSize;
public HDF5CompoundType getType() {
return type;
}
public void setType(HDF5CompoundType type) {
this.type = type;
}
public void setTypeFromInferred(Class typeToInferClass) {
type = writer.getInferredType(typeToInferClass);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment