1 21 package oracle.toplink.essentials.internal.databaseaccess; 23 24 import java.io.Writer ; 25 import java.io.IOException ; 26 27 30 public class SimpleAppendCallCustomParameter implements AppendCallCustomParameter { 31 public SimpleAppendCallCustomParameter(String str) { 32 this.str = str; 33 } 34 35 public void append(Writer writer) throws IOException { 36 writer.write(str); 37 } 38 39 protected String str; 40 } 41 | Popular Tags |