Lines Matching refs:TransferSupport

145      * implementation by <code>TransferSupport</code> instances and by
148 * @see javax.swing.TransferHandler.TransferSupport#getDropLocation
209 * @see #canImport(TransferHandler.TransferSupport)
210 * @see #importData(TransferHandler.TransferSupport)
213 public final static class TransferSupport {
232 * Create a <code>TransferSupport</code> with <code>isDrop()</code>
238 private TransferSupport(Component component,
246 * Create a <code>TransferSupport</code> with <code>isDrop()</code>
255 public TransferSupport(Component component, Transferable transferable) {
312 * Returns whether or not this <code>TransferSupport</code>
345 * when this {@code TransferSupport} represents a drop.
384 * by this {@code TransferSupport}. With this method you can force the
435 * {@code TransferSupport} represents a drop.
461 * {@code TransferSupport} represents a drop.
493 * {@code TransferSupport} represents a drop.
804 * within the <code>TransferSupport</code>.
813 * Note: The <code>TransferSupport</code> object passed to this method
822 * @see #canImport(TransferHandler.TransferSupport)
825 public boolean importData(TransferSupport support) {
837 * that takes a <code>TransferSupport</code>, which in turn calls this
838 * method (if the component in the {@code TransferSupport} is a
848 * @see #importData(TransferHandler.TransferSupport)
884 * {@code TransferSupport} (which contains all of the details of the
891 * {@code setShowDropLocation} on the {@code TransferSupport}.
896 * actions, by calling {@code setDropAction} on the {@code TransferSupport}.
898 * On every call to {@code canImport}, the {@code TransferSupport} contains
902 * {@code TransferSupport} during that last call will be available in
910 * Note: The <code>TransferSupport</code> object passed to this method
919 * @see #importData(TransferHandler.TransferSupport)
920 * @see javax.swing.TransferHandler.TransferSupport#setShowDropLocation
921 * @see javax.swing.TransferHandler.TransferSupport#setDropAction
924 public boolean canImport(TransferSupport support) {
935 * that takes a <code>TransferSupport</code>, which in turn calls this
936 * method (only if the component in the {@code TransferSupport} is a
946 * @see #canImport(TransferHandler.TransferSupport)
1312 private TransferSupport support =
1313 new TransferSupport(null, (DropTargetEvent)null);
1433 private void setComponentDropLocation(TransferSupport support,
1758 th.importData(new TransferSupport(c, trans));