Prechádzať zdrojové kódy

Set and get output stream added to fileWriter

Andrew Grant 4 mesiacov pred
rodič
commit
350348b0b9

+ 8 - 0
src/main/java/scot/carricksoftware/grantswriter/writer/FileWriterImpl.java

@@ -40,6 +40,14 @@ public class FileWriterImpl implements FileWriter {
             throw new RuntimeException(e);
         }
     }
+
+    public OutputStream getOs() {
+        return os;
+    }
+
+    public void setOs(OutputStream os) {
+        this.os = os;
+    }
 }