1 23 24 29 30 package com.sun.jdo.spi.persistence.utility.generator; 31 32 import java.io.IOException ; 33 34 51 public interface JavaFileWriter 52 { 53 62 public void setPackage (String packageName, String [] comments) 63 throws IOException ; 64 65 74 public void addImport (String importName, String [] comments) 75 throws IOException ; 76 77 81 public void addClass (JavaClassWriter classWriter) throws IOException ; 82 83 88 public void save () throws IOException ; 89 } 90 | Popular Tags |