1 17 package org.apache.ws.jaxme.js; 18 19 import java.io.IOException ; 20 21 22 26 public class JavaClassInitializer extends ConditionalIndentationJavaSourceObject { 27 28 JavaClassInitializer() { 29 super(null, null, null); 30 } 31 32 protected void writeHeader(IndentationTarget pTarget) throws IOException { 33 if (!pTarget.isInterface()) { 34 pTarget.indent(0); 35 pTarget.write("static {"); 36 pTarget.write(); 37 } 38 } 39 } 40 | Popular Tags |