1 11 12 package org.eclipse.osgi.framework.adaptor.core; 13 14 import java.io.IOException ; 15 import java.io.InputStream ; 16 import java.net.URL ; 17 18 22 public class ReferenceInputStream extends InputStream { 23 protected URL reference; 24 25 public ReferenceInputStream(URL reference) { 26 this.reference = reference; 27 } 28 29 31 public int read() throws IOException { 32 throw new IOException (); 33 } 34 35 public URL getReference() { 36 return reference; 37 } 38 } | Popular Tags |