Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.awt.datatransfer.DataFlavor;

public class Main {
    static DataFlavor newDataFlavor(final String mimeType) {
        try {
            return new DataFlavor(mimeType);
        } catch (final ClassNotFoundException e) {
            throw new IllegalArgumentException("Cannot create data flavor for " + mimeType, e);
        }
    }
}