FileDocCategorySizeDatePackage
RegisterableService.javaAPI DocAndroid 1.5 API1987Wed May 06 22:41:54 BST 2009javax.imageio.spi

RegisterableService

public interface RegisterableService
The RegisterableService interface provides service provider objects that can be registered by a ServiceRegistry, and notifications that registration and deregistration have been performed.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public voidonDeregistration(javax.imageio.spi.ServiceRegistry registry, java.lang.Class category)
This method is called when the object which implements this interface is deregistered to the specified category of the specified registry.

param
registry the ServiceRegistry to be registered.
param
category the class representing a category.

public voidonRegistration(javax.imageio.spi.ServiceRegistry registry, java.lang.Class category)
This method is called when the object which implements this interface is registered to the specified category of the specified registry.

param
registry the ServiceRegistry to be registered.
param
category the class representing a category.