throws RippleException {
this.printStream = printStream;
this.modelConnection = modelConnection;
this.helper = new ModelConnectionHelper(modelConnection);
RippleProperties props = Ripple.getConfiguration();
this.printEntireStack = props.getBoolean(
Ripple.RESULT_VIEW_PRINT_ENTIRE_STACK);
this.showEdges = props.getBoolean(
Ripple.RESULT_VIEW_SHOW_EDGES);
//&& modelConnection.getModel() instanceof SesameModel;
this.maxPredicates = props.getInt(
Ripple.RESULT_VIEW_MAX_PREDICATES);
this.maxObjects = props.getInt(
Ripple.RESULT_VIEW_MAX_OBJECTS);
this.deduplicateObjects = props.getBoolean(
Ripple.RESULT_VIEW_DEDUPLICATE_OBJECTS);
}