/*
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package javax.imageio.spi;
import javax.imageio.ImageTranscoder;
The service provider interface (SPI) for ImageTranscoder
s. For more information on service provider classes, see the class comment for the IIORegistry
class. See Also:
/**
* The service provider interface (SPI) for {@code ImageTranscoder}s.
* For more information on service provider classes, see the class comment
* for the {@code IIORegistry} class.
*
* @see IIORegistry
* @see javax.imageio.ImageTranscoder
*
*/
public abstract class ImageTranscoderSpi extends IIOServiceProvider {
Constructs a blank ImageTranscoderSpi
. It is up to the subclass to initialize instance variables and/or override method implementations in order to provide working versions of all methods. /**
* Constructs a blank {@code ImageTranscoderSpi}. It is up
* to the subclass to initialize instance variables and/or
* override method implementations in order to provide working
* versions of all methods.
*/
protected ImageTranscoderSpi() {
}
Constructs an ImageTranscoderSpi
with a given set of values. Params: - vendorName – the vendor name.
- version – a version identifier.
/**
* Constructs an {@code ImageTranscoderSpi} with a given set
* of values.
*
* @param vendorName the vendor name.
* @param version a version identifier.
*/
public ImageTranscoderSpi(String vendorName,
String version) {
super(vendorName, version);
}
Returns the fully qualified class name of an ImageReaderSpi
class that generates IIOMetadata
objects that may be used as input to this transcoder. See Also: Returns: a String
containing the fully-qualified class name of the ImageReaderSpi
implementation class.
/**
* Returns the fully qualified class name of an
* {@code ImageReaderSpi} class that generates
* {@code IIOMetadata} objects that may be used as input to
* this transcoder.
*
* @return a {@code String} containing the fully-qualified
* class name of the {@code ImageReaderSpi} implementation class.
*
* @see ImageReaderSpi
*/
public abstract String getReaderServiceProviderName();
Returns the fully qualified class name of an ImageWriterSpi
class that generates IIOMetadata
objects that may be used as input to this transcoder. See Also: Returns: a String
containing the fully-qualified class name of the ImageWriterSpi
implementation class.
/**
* Returns the fully qualified class name of an
* {@code ImageWriterSpi} class that generates
* {@code IIOMetadata} objects that may be used as input to
* this transcoder.
*
* @return a {@code String} containing the fully-qualified
* class name of the {@code ImageWriterSpi} implementation class.
*
* @see ImageWriterSpi
*/
public abstract String getWriterServiceProviderName();
Returns an instance of the ImageTranscoder
implementation associated with this service provider. Returns: an ImageTranscoder
instance.
/**
* Returns an instance of the {@code ImageTranscoder}
* implementation associated with this service provider.
*
* @return an {@code ImageTranscoder} instance.
*/
public abstract ImageTranscoder createTranscoderInstance();
}