1 23 package com.sun.enterprise.diagnostics.report.html; 24 25 import java.io.File ; 26 import java.io.IOException ; 27 import java.io.Writer ; 28 31 public interface HTMLComponent { 32 33 37 public String toString(); 38 39 40 46 public void write(Writer output) throws IOException ; 47 48 49 55 public void write(File file) throws IOException ; 56 57 } 58 | Popular Tags |