We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c4279 commit 3b47eccCopy full SHA for 3b47ecc
src/main/java/edu/kit/datamanager/ro_crate/writer/CrateWriter.java
@@ -17,6 +17,11 @@ public class CrateWriter<DESTINATION_TYPE> {
17
private final GenericWriterStrategy<DESTINATION_TYPE> strategy;
18
protected ProvenanceManager provenanceManager = new ProvenanceManager();
19
20
+ /**
21
+ * Constructs a CrateWriter with a specified strategy for writing crates.
22
+ *
23
+ * @param strategy the strategy to use for writing crates.
24
+ */
25
public CrateWriter(GenericWriterStrategy<DESTINATION_TYPE> strategy) {
26
this.strategy = strategy;
27
}
0 commit comments