/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package datapath.graph; /** * * @author jh */ public class TopLevel extends Graph { @Override public String toString() { return "toplevel"+super.toString(); } }