blob: 83c5461adbeab5940f4dff3709a56c66c4b2e6b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package org.madore.damlengine;
import java.io.OutputStream;
public final class WeblogIndexSelect {
private WeblogIndexSelect() { // Forbid instantiation
throw new AssertionError("WeblogIndexSelect cannot be instantiated");
}
public static void fullProcess(OutputStream out)
throws Exception {
DamlEngine.fullProcess(DamlEngine.class.getResourceAsStream("weblog-index-template.daml"),
out, null);
}
}
|