Example usage for java.awt.datatransfer DataFlavor isRepresentationClassRemote

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

Introduction

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

Prototype

public boolean isRepresentationClassRemote() 

Source Link

Document

Returns true if the representation class is Remote .

Usage

From source file:Main.java

public static void main(String[] args) {

    DataFlavor df = DataFlavor.stringFlavor;

    System.out.println(df.isRepresentationClassRemote());
}