1 12 package org.eclipse.jdt.apt.core.internal.util; 13 14 import java.io.IOException ; 15 import java.io.InputStream ; 16 17 18 public class InputStreamAnnotationScanner extends AnnotationScanner { 19 20 private final InputStream input; 21 22 public InputStreamAnnotationScanner(final InputStream input) { 23 this.input = input; 24 } 25 26 @Override  27 protected int getNext() throws IOException { 28 return input.read(); 29 } 30 31 } 32 | Popular Tags |