1 23 24 26 27 29 package com.sun.jdo.api.persistence.enhancer; 30 31 32 34 import java.io.OutputStream ; 35 36 37 48 50 public class OutputStreamWrapper 51 { 52 53 54 57 private OutputStream out; 58 59 60 64 private String className = null; 65 66 67 72 73 public OutputStreamWrapper (OutputStream out) 74 { 75 76 this.out = out; 77 78 } 80 81 88 89 public final OutputStream getStream () 90 { 91 92 return this.out; 93 94 } 96 97 105 106 public final String getClassName () 107 { 108 109 return this.className; 110 111 } 113 114 122 123 public final void setClassName (String classname) 124 { 125 126 this.className = classname; 127 128 } 130 131 } 133 134 | Popular Tags |