use of com.structurizr.view.ViewSet in project java by structurizr.
the class Workspace method createViewSet.
private ViewSet createViewSet() {
try {
Constructor constructor = ViewSet.class.getDeclaredConstructor(Model.class);
constructor.setAccessible(true);
return (ViewSet) constructor.newInstance(model);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
Aggregations