/* * Copyright 2006 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package java.io; /** * @skip */ public class PrintStream extends FilterOutputStream { public PrintStream(OutputStream out) { super(out); } public void print(boolean x) { } public void print(char x) { } public void print(char[] x) { } public void print(double x) { } public void print(float x) { } public void print(int x) { } public void print(long x) { } public void print(Object x) { } public void print(String s) { } public void println() { } public void println(boolean x) { } public void println(char x) { } public void println(char[] x) { } public void println(double x) { } public void println(float x) { } public void println(int x) { } public void println(long x) { } public void println(Object x) { } public void println(String s) { } }