1 19 package org.enhydra.zeus.result; 20 21 import java.io.IOException ; 22 23 import org.enhydra.zeus.Result; 25 26 45 public abstract class BaseResult implements Result { 46 47 48 protected String systemID; 49 50 60 public String getSystemID() { 61 return systemID; 62 } 63 64 75 public void setSystemID(String systemID) { 76 this.systemID = systemID; 77 } 78 79 91 public abstract void write(String output) throws IOException ; 92 93 } 94 | Popular Tags |