Inheritance diagram for org.jgraph.plaf.basic.BasicGraphTransferable:
Public Member Functions | |
DataFlavor[] | getTransferDataFlavors () |
boolean | isDataFlavorSupported (DataFlavor flavor) |
Object | getTransferData (DataFlavor flavor) throws UnsupportedFlavorException, IOException |
Protected Member Functions | |
boolean | isRicherFlavor (DataFlavor flavor) |
DataFlavor[] | getRicherFlavors () |
Object | getRicherData (DataFlavor flavor) throws UnsupportedFlavorException |
boolean | isHTMLFlavor (DataFlavor flavor) |
boolean | isHTMLSupported () |
String | getHTMLData () |
boolean | isPlainFlavor (DataFlavor flavor) |
boolean | isPlainSupported () |
String | getPlainData () |
boolean | isStringFlavor (DataFlavor flavor) |
Static Package Functions | |
[static initializer] | |
Static Private Attributes | |
static DataFlavor[] | htmlFlavors |
static DataFlavor[] | stringFlavors |
static DataFlavor[] | plainFlavors |
|
Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Fetch the data in a text/html format Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Fetch the data in a text/plain format. Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Some subclasses will have flavors that are more descriptive than HTML or plain text. If this method returns a non-null value, it will be placed at the start of the array of supported flavors. Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Returns an object which represents the data to be transferred. The class of the object returned is defined by the representation class of the flavor.
|
|
Returns an array of DataFlavor objects indicating the flavors the data can be provided in. The array should be ordered according to preference for providing the data (from most richly descriptive to least descriptive).
|
|
Returns whether or not the specified data flavor is supported for this object.
|
|
Returns whether or not the specified data flavor is an HTML flavor that is supported.
|
|
Whether the HTML flavors are offered. If so, the method getHTMLData should be implemented to provide something reasonable. Reimplemented in org.jgraph.graph.GraphTransferable. |
|
Returns whether or not the specified data flavor is an plain flavor that is supported.
|
|
Whether the plain text flavors are offered. If so, the method getPlainData should be implemented to provide something reasonable. Reimplemented in org.jgraph.graph.GraphTransferable. |
|
|
|
Returns whether or not the specified data flavor is a String flavor that is supported.
|
|
|
|
|
|
|