Created
July 29, 2014 21:35
-
-
Save pscollins/34c636bee69282affa93 to your computer and use it in GitHub Desktop.
error part 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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