// This file is automatically generated by DemeterJ. PrintVisitor { {{ protected java.io.PrintWriter out = new java.io.PrintWriter(System.out, true); java.io.PrintWriter get_out() { return out; } void set_out(java.io.PrintWriter new_out) { out = new_out; } PrintVisitor(java.io.PrintWriter out) { set_out(out); } PrintVisitor(java.io.PrintStream out) { set_out(new java.io.PrintWriter(out, true)); } }} finish {{ out.flush(); }} protected void space() {{ if (needSpace) out.print(" "); needSpace = false; }} before -> Main, s, String {{ space(); out.print("\"" + source.get_s() + "\""); needSpace = true; }} before -> Rectangle, x, int {{ space(); out.print("rectangle"); needSpace = true; space(); out.print(source.get_x()); needSpace = true; }} before -> Rectangle, y, int {{ space(); out.print(source.get_y()); needSpace = true; }} before -> Rectangle, width, int {{ space(); out.print(source.get_width()); needSpace = true; }} before -> Rectangle, height, int {{ space(); out.print(source.get_height()); needSpace = true; }} before -> Circle, x, int {{ space(); out.print("circle"); needSpace = true; space(); out.print(source.get_x()); needSpace = true; }} before -> Circle, y, int {{ space(); out.print(source.get_y()); needSpace = true; }} before -> Circle, radius, int {{ space(); out.print(source.get_radius()); needSpace = true; }} before -> Combination, shape_list, Shape_List {{ out.print("("); needSpace = false; }} after -> Combination, shape_list, Shape_List {{ out.print(")"); needSpace = false; }} before -> PrintVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} before -> PrintVisitor, needSpace, boolean {{ space(); out.print(source.get_needSpace()); needSpace = true; }} before -> CopyVisitor, copy, Object {{ space(); out.print(source.get_copy()); needSpace = true; }} before -> SubgraphVisitor, is_equal, boolean {{ space(); out.print(source.get_is_equal()); needSpace = true; }} before -> EqualVisitor, is_equal, boolean {{ space(); out.print(source.get_is_equal()); needSpace = true; }} before -> DisplayVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} before -> TraceVisitor, indent, int {{ space(); out.print(source.get_indent()); needSpace = true; }} }