/[classpath]/classpath/javax/imageio/spi/ImageInputStreamSpi.java
ViewVC logotype

Diff of /classpath/javax/imageio/spi/ImageInputStreamSpi.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.3 by gnu_andrew, Tue Aug 2 20:12:35 2005 UTC revision 1.1.2.4 by tromey, Thu Dec 1 15:09:47 2005 UTC
# Line 59  public abstract class ImageInputStreamSp Line 59  public abstract class ImageInputStreamSp
59     * Indicates which kind of input is processable by the streams     * Indicates which kind of input is processable by the streams
60     * created by {@link #createInputStreamInstance(Object)}.     * created by {@link #createInputStreamInstance(Object)}.
61     */     */
62    protected Class inputClass;    protected Class<?> inputClass;
63    
64    
65    /**    /**
# Line 80  public abstract class ImageInputStreamSp Line 80  public abstract class ImageInputStreamSp
80     * or <code>version</code> is <code>null</code>.     * or <code>version</code> is <code>null</code>.
81     */     */
82    public ImageInputStreamSpi(String vendorName, String version,    public ImageInputStreamSpi(String vendorName, String version,
83                               Class inputClass)                               Class<?> inputClass)
84    {    {
85      super(vendorName, version);      super(vendorName, version);
86      this.inputClass = inputClass;      this.inputClass = inputClass;
# Line 91  public abstract class ImageInputStreamSp Line 91  public abstract class ImageInputStreamSp
91     * Determines which kind of input is processable by the streams     * Determines which kind of input is processable by the streams
92     * created by {@link #createInputStreamInstance(Object)}.     * created by {@link #createInputStreamInstance(Object)}.
93     */     */
94    public Class getInputClass()    public Class<?> getInputClass()
95    {    {
96      return inputClass;      return inputClass;
97    }    }

Legend:
Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26