Lines Matching refs:support

74  * built in support will use the color returned by <code>getForeground</code> as the source
347 * Note: For components with built-in drop support, this location
704 * Causes the Swing drag support to be initiated. This is called by
708 * implementations to use the Swing drag support. This method can also be called
710 * to take advantage of the Swing drag support.
732 // only support known actions
734 // only support valid source actions
817 * @param support the object containing the details of
821 * @throws NullPointerException if <code>support</code> is {@code null}
825 public boolean importData(TransferSupport support) {
826 return support.getComponent() instanceof JComponent
827 ? importData((JComponent)support.getComponent(), support.getTransferable())
914 * @param support the object containing the details of
918 * @throws NullPointerException if <code>support</code> is {@code null}
924 public boolean canImport(TransferSupport support) {
925 return support.getComponent() instanceof JComponent
926 ? canImport((JComponent)support.getComponent(), support.getDataFlavors())
1204 * to the <code>TransferHandler</code>, and adds support for
1312 private TransferSupport support =
1433 private void setComponentDropLocation(TransferSupport support,
1436 DropLocation dropLocation = (support == null)
1438 : support.getDropLocation();
1458 support.setDNDVariables(component, e);
1459 boolean canImport = importer.canImport(support);
1462 e.acceptDrag(support.getDropAction());
1467 boolean showLocation = support.showDropLocationIsSet ?
1468 support.showDropLocation :
1471 setComponentDropLocation(showLocation ? support : null, false);
1521 support.setDNDVariables(component, e);
1522 boolean canImport = importer.canImport(support);
1525 e.acceptDrop(support.getDropAction());
1527 boolean showLocation = support.showDropLocationIsSet ?
1528 support.showDropLocation :
1531 setComponentDropLocation(showLocation ? support : null, false);
1536 success = importer.importData(support);