01: /*
02: * Copyright 2006 Google Inc.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
05: * use this file except in compliance with the License. You may obtain a copy of
06: * the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13: * License for the specific language governing permissions and limitations under
14: * the License.
15: */
16: package java.io;
17:
18: /**
19: * @skip
20: */
21: public class PrintStream extends FilterOutputStream {
22:
23: public PrintStream(OutputStream out) {
24: super (out);
25: }
26:
27: public void print(boolean x) {
28: }
29:
30: public void print(char x) {
31: }
32:
33: public void print(char[] x) {
34: }
35:
36: public void print(double x) {
37: }
38:
39: public void print(float x) {
40: }
41:
42: public void print(int x) {
43: }
44:
45: public void print(long x) {
46: }
47:
48: public void print(Object x) {
49: }
50:
51: public void print(String s) {
52: }
53:
54: public void println() {
55: }
56:
57: public void println(boolean x) {
58: }
59:
60: public void println(char x) {
61: }
62:
63: public void println(char[] x) {
64: }
65:
66: public void println(double x) {
67: }
68:
69: public void println(float x) {
70: }
71:
72: public void println(int x) {
73: }
74:
75: public void println(long x) {
76: }
77:
78: public void println(Object x) {
79: }
80:
81: public void println(String s) {
82: }
83:
84: }
|