1   package org.jmage.tags;
2   
3   import javax.servlet.jsp.JspWriter;
4   import java.io.IOException;
5   
6   /***
7    * MyDummyJspWriter is a dummy class
8    */
9   public class MyDummyJspWriter extends JspWriter {
10  
11      //fixes no constructor issue with JspWriter abstract class;
12      public MyDummyJspWriter() {
13          super(0, false);
14      }
15  
16      public MyDummyJspWriter(int bufferSize, boolean autoFlush) {
17          super(bufferSize, autoFlush);
18      }
19  
20      public void print(boolean flag) throws IOException {
21  
22      }
23  
24      public void print(char c) throws IOException {
25  
26      }
27  
28      public void print(int i) throws IOException {
29  
30      }
31  
32      public void print(long l) throws IOException {
33  
34      }
35  
36      public void print(float f) throws IOException {
37  
38      }
39  
40      public void print(double d) throws IOException {
41  
42      }
43  
44      public void print(char ac[]) throws IOException {
45  
46      }
47  
48      public void print(String s) throws IOException {
49  
50      }
51  
52      public void print(Object obj) throws IOException {
53  
54      }
55  
56      public void newLine() throws IOException {
57  
58      }
59  
60      public void println() throws IOException {
61  
62      }
63  
64      public void println(boolean flag) throws IOException {
65  
66      }
67  
68      public void println(char c) throws IOException {
69  
70      }
71  
72      public void println(int i) throws IOException {
73  
74      }
75  
76      public void println(long l) throws IOException {
77  
78      }
79  
80      public void println(float f) throws IOException {
81  
82      }
83  
84      public void println(double d) throws IOException {
85  
86      }
87  
88      public void println(char ac[]) throws IOException {
89  
90      }
91  
92      public void println(String s) throws IOException {
93  
94      }
95  
96      public void println(Object obj) throws IOException {
97  
98      }
99  
100     public void clear() throws IOException {
101 
102     }
103 
104     public void clearBuffer() throws IOException {
105 
106     }
107 
108     public void close() throws IOException {
109 
110     }
111 
112     public void flush() throws IOException {
113 
114     }
115 
116     public void write(char cbuf[], int off, int len) throws IOException {
117 
118     }
119 
120     public int getRemaining() {
121         return 0;
122     }
123 }