Example usage for java.awt.datatransfer DataFlavor javaRemoteObjectMimeType

List of usage examples for java.awt.datatransfer DataFlavor javaRemoteObjectMimeType

Introduction

In this page you can find the example usage for java.awt.datatransfer DataFlavor javaRemoteObjectMimeType.

Prototype

String javaRemoteObjectMimeType

To view the source code for java.awt.datatransfer DataFlavor javaRemoteObjectMimeType.

Click Source Link

Document

In order to pass a live link to a Remote object via a Drag and Drop ACTION_LINK operation a Mime Content Type of application/x-java-remote-object should be used, where the representation class of the DataFlavor represents the type of the Remote interface to be transferred.

Usage

From source file:Main.java

public static void main(String[] args) {

    String df = DataFlavor.javaRemoteObjectMimeType;

    System.out.println(df);
}