FileDocCategorySizeDatePackage
AccessibleStreamable.javaAPI DocJava SE 6 API1474Tue Jun 10 00:26:02 BST 2008javax.accessibility

AccessibleStreamable

public interface AccessibleStreamable
The AccessibleStreamable interface should be implemented by the AccessibleContext of any component that presents the raw stream behind a component on the display screen. Examples of such components are HTML, bitmap images and MathML. An object that implements AccessibleStreamable provides two things: a list of MIME types supported by the object and a streaming interface for each MIME type to get the data.
version
1.5 04/07/06
author
Lynn Monsanto
author
Peter Korn
see
javax.accessibility.AccessibleContext
since
1.5

Fields Summary
Constructors Summary
Methods Summary
public java.awt.datatransfer.DataFlavor[]getMimeTypes()
Returns an array of DataFlavor objects for the MIME types this object supports.

return
an array of DataFlavor objects for the MIME types this object supports.

public java.io.InputStreamgetStream(java.awt.datatransfer.DataFlavor flavor)
Returns an InputStream for a DataFlavor

param
flavor the DataFlavor
return
an ImputStream if an ImputStream for this DataFlavor exists. Otherwise, null is returned.