Here you can find the source of getDataFlavors(JComponent component)
private static DataFlavor[] getDataFlavors(JComponent component)
//package com.java2s; /*/*w w w . j ava2 s .co m*/ * Copyright (C) 2006 Sun Microsystems, Inc. All rights reserved. Use is * subject to license terms. */ import java.awt.datatransfer.DataFlavor; import javax.swing.JComponent; public class Main { private static final Object FLAVORS_CLIENT_PROPERTY = new StringBuilder( "PasteFlavorsClientProperty"); private static DataFlavor[] getDataFlavors(JComponent component) { return (DataFlavor[]) component .getClientProperty(FLAVORS_CLIENT_PROPERTY); } }