// This file is automatically generated by DemeterJ. CopyVisitor { {{ private java.util.Stack history = new java.util.Stack(); public CopyVisitor(Class firstClass) { try { history.push(firstClass.newInstance()); } catch(Exception e) { e.printStackTrace(); } } }} get copy {{ return history.peek(); }} return Object {{ get_copy() }} before -> A, b1, B {{ A it = (A) history.peek(); Class c = dest.getClass(); Object p = null; try { p = c.newInstance(); } catch(Exception e) { e.printStackTrace(); } it.set_b1((B) p); history.push(p); }} after -> A, b1, B {{ history.pop(); }} before -> A, c1, C {{ A it = (A) history.peek(); C p = new C(); it.set_c1(p); history.push(p); }} after -> A, c1, C {{ history.pop(); }} before -> A, d, D {{ A it = (A) history.peek(); D p = new D(); it.set_d(p); history.push(p); }} after -> A, d, D {{ history.pop(); }} before -> F, g1, G {{ F it = (F) history.peek(); G p = new G(); it.set_g1(p); history.push(p); }} after -> F, g1, G {{ history.pop(); }} before -> F, h1, H {{ F it = (F) history.peek(); H p = new H(); it.set_h1(p); history.push(p); }} after -> F, h1, H {{ history.pop(); }} before -> F, a1, A {{ F it = (F) history.peek(); A p = new A(); it.set_a1(p); history.push(p); }} after -> F, a1, A {{ history.pop(); }} before -> PrintVisitor, indent, int {{ PrintVisitor it = (PrintVisitor) history.peek(); it.set_indent(dest); }} before -> PrintVisitor, needSpace, boolean {{ PrintVisitor it = (PrintVisitor) history.peek(); it.set_needSpace(dest); }} before -> SubgraphVisitor, is_equal, boolean {{ SubgraphVisitor it = (SubgraphVisitor) history.peek(); it.set_is_equal(dest); }} before -> EqualVisitor, is_equal, boolean {{ EqualVisitor it = (EqualVisitor) history.peek(); it.set_is_equal(dest); }} before -> DisplayVisitor, indent, int {{ DisplayVisitor it = (DisplayVisitor) history.peek(); it.set_indent(dest); }} before -> TraceVisitor, indent, int {{ TraceVisitor it = (TraceVisitor) history.peek(); it.set_indent(dest); }} }