comparison graal/GraalCompiler/src/com/sun/c1x/debug/IdealGraphPrinterObserver.java @ 2699:a51ef0310dad

Document new IdealGraphPrinterObserver constructors
author Peter Hofer <peter.hofer@jku.at>
date Wed, 18 May 2011 15:17:17 +0200
parents b179be22a3db
children b003ea36fa12
comparison
equal deleted inserted replaced
2698:b179be22a3db 2699:a51ef0310dad
46 46
47 private IdealGraphPrinter printer; 47 private IdealGraphPrinter printer;
48 private OutputStream stream; 48 private OutputStream stream;
49 private Socket socket; 49 private Socket socket;
50 50
51 /**
52 * Creates a new {@link IdealGraphPrinterObserver} that writes output to a file named after the compiled method.
53 */
51 public IdealGraphPrinterObserver() { 54 public IdealGraphPrinterObserver() {
52 this(null, -1); 55 this(null, -1);
53 } 56 }
54 57
58 /**
59 * Creates a new {@link IdealGraphPrinterObserver} that sends output to a remove IdealGraphVisualizer instance.
60 */
55 public IdealGraphPrinterObserver(String host, int port) { 61 public IdealGraphPrinterObserver(String host, int port) {
56 this.host = host; 62 this.host = host;
57 this.port = port; 63 this.port = port;
58 } 64 }
59 65