01: package java.io;
02:
03: public class PrintStream extends FilterOutputStream {
04: public PrintStream(OutputStream out) {
05: }
06:
07: public PrintStream(OutputStream out, boolean auto_flush) {
08: }
09:
10: public PrintStream(OutputStream out, boolean auto_flush,
11: String encoding) throws UnsupportedEncodingException {
12: }
13:
14: public boolean checkError() {
15: }
16:
17: protected void setError() {
18: }
19:
20: public void close() {
21: }
22:
23: public void flush() {
24: }
25:
26: public void print(boolean bool) {
27: }
28:
29: public void print(int inum) {
30: }
31:
32: public void print(long lnum) {
33: }
34:
35: public void print(float fnum) {
36: }
37:
38: public void print(double dnum) {
39: }
40:
41: public void print(Object obj) {
42: }
43:
44: public void print(String str) {
45: }
46:
47: public void print(char ch) {
48: }
49:
50: public void print(char[] charArray) {
51: }
52:
53: public void println() {
54: }
55:
56: public void println(boolean bool) {
57: }
58:
59: public void println(int inum) {
60: }
61:
62: public void println(long lnum) {
63: }
64:
65: public void println(float fnum) {
66: }
67:
68: public void println(double dnum) {
69: }
70:
71: public void println(Object obj) {
72: }
73:
74: public void println(String str) {
75: }
76:
77: public void println(char ch) {
78: }
79:
80: public void println(char[] charArray) {
81: }
82:
83: public void write(int oneByte) {
84: }
85:
86: public void write(byte[] buffer, int offset, int len) {
87: }
88: }
|