package com.sun.ukit.jaxp;

import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;

public class ReaderUTF16 extends Reader
{

 public ReaderUTF16(InputStream, char)
 {
 }
 
 public int read(char[], int, int) throws IOException
 {
  return 0;
 }
 
 public int read() throws IOException
 {
  return 0;
 }
 
 public void close() throws IOException
 {
 }
 
}