Clover Coverage Report - Impex Parent 1.0.21-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 8 2011 11:33:53 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
13   60   10   1.3
0   42   0.77   10
10     1  
1    
 
  MorphRequest       Line # 10 13 0% 10 23 0% 0.0
 
No Tests
 
1    package org.apache.torque.mojo.morph;
2   
3    import java.io.InputStream;
4    import java.io.OutputStream;
5   
6    /**
7    *
8    *
9    */
 
10    public class MorphRequest {
11   
12    String name;
13    String encoding;
14    InputStream inputStream;
15    OutputStream outputStream;
16   
 
17  0 toggle public MorphRequest() {
18  0 this(null, null, null);
19    }
20   
 
21  0 toggle public MorphRequest(String filename, InputStream inputStream, OutputStream outputStream) {
22  0 super();
23  0 this.name = filename;
24  0 this.inputStream = inputStream;
25  0 this.outputStream = outputStream;
26    }
27   
 
28  0 toggle public InputStream getInputStream() {
29  0 return inputStream;
30    }
31   
 
32  0 toggle public void setInputStream(InputStream oldData) {
33  0 this.inputStream = oldData;
34    }
35   
 
36  0 toggle public OutputStream getOutputStream() {
37  0 return outputStream;
38    }
39   
 
40  0 toggle public void setOutputStream(OutputStream newData) {
41  0 this.outputStream = newData;
42    }
43   
 
44  0 toggle public String getName() {
45  0 return name;
46    }
47   
 
48  0 toggle public void setName(String filename) {
49  0 this.name = filename;
50    }
51   
 
52  0 toggle public String getEncoding() {
53  0 return encoding;
54    }
55   
 
56  0 toggle public void setEncoding(String encoding) {
57  0 this.encoding = encoding;
58    }
59   
60    }