1 |
|
package org.apache.torque.mojo.morph; |
2 |
|
|
3 |
|
import java.io.InputStream; |
4 |
|
import java.io.OutputStream; |
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
|
|
| 0% |
Uncovered Elements: 23 (23) |
Complexity: 10 |
Complexity Density: 0.77 |
|
10 |
|
public class MorphRequest { |
11 |
|
|
12 |
|
String name; |
13 |
|
String encoding; |
14 |
|
InputStream inputStream; |
15 |
|
OutputStream outputStream; |
16 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
0
|
public MorphRequest() {... |
18 |
0
|
this(null, null, null); |
19 |
|
} |
20 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
21 |
0
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
28 |
0
|
public InputStream getInputStream() {... |
29 |
0
|
return inputStream; |
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public void setInputStream(InputStream oldData) {... |
33 |
0
|
this.inputStream = oldData; |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public OutputStream getOutputStream() {... |
37 |
0
|
return outputStream; |
38 |
|
} |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public void setOutputStream(OutputStream newData) {... |
41 |
0
|
this.outputStream = newData; |
42 |
|
} |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public String getName() {... |
45 |
0
|
return name; |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public void setName(String filename) {... |
49 |
0
|
this.name = filename; |
50 |
|
} |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
0
|
public String getEncoding() {... |
53 |
0
|
return encoding; |
54 |
|
} |
55 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
0
|
public void setEncoding(String encoding) {... |
57 |
0
|
this.encoding = encoding; |
58 |
|
} |
59 |
|
|
60 |
|
} |