1 17 package org.apache.ws.jaxme.js.impl; 18 19 import org.apache.ws.jaxme.js.IndentationEngineImpl; 20 import org.apache.ws.jaxme.js.TextFile; 21 22 23 26 public class TextFileImpl extends IndentationEngineImpl implements TextFile { 27 private final String packageName, fileName; 28 private String contents; 29 30 public TextFileImpl(String pPackageName, String pFileName) { 31 packageName = pPackageName; 32 fileName = pFileName; 33 } 34 35 public String getPackageName() { return packageName; } 36 public String getFileName() { return fileName; } 37 public String getContents() { 38 if (contents == null) { 39 return super.asString(); 40 } else { 41 return contents; 42 } 43 } 44 public void setContents(String pContents) { contents = pContents; } 45 } 46 | Popular Tags |