~ubuntu-branches/ubuntu/saucy/libjgraph-java/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
<!--

 @(#)migrate.xml	1.0 03-JUL-04

 Copyright (c) 2001-2004 Gaudenz Alder

-->

<!-- ===================== Project Properties =========================== -->

<project name="jgraph-migrate" default="all" basedir=".">

<!-- ===================== Build Environment =========================== -->

	<property name="build.home"    value="${basedir}/build"/>

<!--  ==================== All ==================== -->

	<target name="all" depends="checkversion, migrate"
		description="Clean up and produce all distributions"/>

<!--  ==================== Checkversion ==================== -->

	<target name="checkversion" description="Check Java version">
        <!-- Check Java Version: doMigrate if Java 1.3 -->
	  	<condition property="doMigrate" value="Yes">
    		<equals arg1="${java.specification.version}" arg2="1.3" />
	    </condition>
	</target>
	
<!--  ==================== Migrate ==================== -->

	<target name="migrate" depends="adapter" description="Migrate the build tree" if="doMigrate">
		<echo message="Migrating to Java 1.3"/>
		
		<replace dir="${build.home}/src">
		  <include name="**/*.java"/>

		  <!-- Java 1.3: Replace superclass in com.jgraph.JGraph -->
		  <replacefilter 
		    token="extends JComponent // JAVA13" 
		    value="extends org.jgraph.plaf.basic.TransferHandler.JAdapterComponent // JAVA13"/>

			<!-- Java 1.3: Replace import in com.jgraph.plaf.basic.BasicGraphUI -->
		  <replacefilter 
		    token="javax.swing.TransferHandler" 
		    value="org.jgraph.plaf.basic.TransferHandler"/>

			<!-- Java 1.3: Replace typecast in com.jgraph.plaf.basic.BasciGraphDropTargetListener -->
		  <replacefilter 
		    token="(JComponent) // JAVA13" 
		    value="(org.jgraph.plaf.basic.TransferHandler.JDNDAdapter) // JAVA13"/>

			<!-- Java 1.3: Replace typedef in com.jgraph.plaf.basic.BasciGraphDropTargetListener -->
		</replace>

		<replace dir="${build.home}/example">
		  <include name="**/*.java"/>

		  <!-- Java 1.3: Replace TransferHandler class in GraphEd -->
		  <replacefilter 
		    token="javax.swing.TransferHandler // JAVA13" 
		    value="org.jgraph.plaf.basic.TransferHandler // JAVA13"/>

		</replace>
	</target>

<!--  ==================== adapter ==================== -->

	<target name="adapter" description="Create TransferHandler.java" if="doMigrate">
		<echo message="Creating adapter for Java 1.3"/>
		<echo file="${build.home}/src/org/jgraph/plaf/basic/TransferHandler.java"><![CDATA[
/*
 * @(#)TransferHandler	1.0 29/2/02
 * 
 * Copyright (c) 2001-2004 Gaudenz Alder
 *  
 */
package org.jgraph.plaf.basic;

import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.dnd.DnDConstants;
import java.awt.dnd.DragGestureEvent;
import java.awt.dnd.DragGestureListener;
import java.awt.dnd.DragGestureRecognizer;
import java.awt.dnd.DragSource;
import java.awt.dnd.DragSourceContext;
import java.awt.dnd.DragSourceDragEvent;
import java.awt.dnd.DragSourceDropEvent;
import java.awt.dnd.DragSourceEvent;
import java.awt.dnd.DragSourceListener;
import java.awt.dnd.DropTarget;
import java.awt.dnd.DropTargetDragEvent;
import java.awt.dnd.DropTargetDropEvent;
import java.awt.dnd.DropTargetEvent;
import java.awt.dnd.DropTargetListener;
import java.awt.event.ActionEvent;
import java.awt.event.InputEvent;
import java.awt.event.MouseEvent;
import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.io.IOException;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.util.TooManyListenersException;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.JComponent;
import javax.swing.event.EventListenerList;
import javax.swing.plaf.UIResource;

/**
 * This compatibility class is required by JGraph for Java 1.3
 */

public class TransferHandler implements Serializable {

	// Adapter
	public static interface JDNDAdapter {

		TransferHandler getTransferHandler();

	}

	public static class JAdapterComponent
		extends JComponent
		implements JDNDAdapter {


		protected TransferHandler transfer = null;

		public void setTransferHandler(TransferHandler newHandler) {
			TransferHandler oldHandler = transfer;
			transfer = newHandler;

			DropTarget dropHandler = getDropTarget();
			if ((dropHandler == null) || (dropHandler instanceof UIResource)) {
				if (newHandler == null) {
					setDropTarget(null);
				} else {
					setDropTarget(new TransferHandler.SwingDropTarget(this));
				}
			}
			firePropertyChange("transferHandler", oldHandler, transfer);
		}

		public TransferHandler getTransferHandler() {
			return transfer;
		}

	}

	/**
	 * An <code>int</code> representing no transfer action. 
	 */
	public static final int NONE = DnDConstants.ACTION_NONE;

	/**
	 * An <code>int</code> representing a &quot;copy&quot; transfer action.
	 * This value is used when data is copied to a clipboard
	 * or copied elsewhere in a drag and drop operation.
	 */
	public static final int COPY = DnDConstants.ACTION_COPY;

	/**
	 * An <code>int</code> representing a &quot;move&quot; transfer action.
	 * This value is used when data is moved to a clipboard (i.e. a cut)
	 * or moved elsewhere in a drag and drop operation.
	 */
	public static final int MOVE = DnDConstants.ACTION_MOVE;

	/**
	 * An <code>int</code> representing a source action capability of either
	 * &quot;copy&quot; or &quot;move&quot;.
	 */
	public static final int COPY_OR_MOVE = DnDConstants.ACTION_COPY_OR_MOVE;

	/**
	 * Returns an <code>Action</code> that behaves like a 'cut' operation.
	 * That is, this will invoke <code>exportToClipboard</code> with
	 * a <code>MOVE</code> argument on the <code>TransferHandler</code>
	 * associated with the <code>JComponent</code> that is the source of
	 * the <code>ActionEvent</code>.
	 *
	 * @return cut Action
	 */
	public static Action getCutAction() {
		return cutAction;
	}

	/**
	 * Returns an <code>Action</code> that behaves like a 'copy' operation.
	 * That is, this will invoke <code>exportToClipboard</code> with
	 * a <code>COPY</code> argument on the <code>TransferHandler</code>
	 * associated with the <code>JComponent</code> that is the source of
	 * the <code>ActionEvent</code>.
	 *
	 * @return cut Action
	 */
	public static Action getCopyAction() {
		return copyAction;
	}

	/**
	 * Returns an <code>Action</code> that behaves like a 'paste' operation.
	 * That is, this will invoke <code>importData</code> on the
	 * <code>TransferHandler</code>
	 * associated with the <code>JComponent</code> that is the source of
	 * the <code>ActionEvent</code>.
	 *
	 * @return cut Action
	 */
	public static Action getPasteAction() {
		return pasteAction;
	}

	/**
	 * Constructs a transfer handler that can transfer a Java Bean property
	 * from one component to another via the clipboard or a drag and drop
	 * operation.
	 *
	 * @param property  the name of the property to transfer; this can
	 *  be <code>null</code> if there is no property associated with the transfer
	 *  handler (a subclass that performs some other kind of transfer, for example)
	 */
	public TransferHandler(String property) {
		propertyName = property;
	}

	/**
	 * Convenience constructor for subclasses.
	 */
	protected TransferHandler() {
		this(null);
	}

	/**
	 * Causes the Swing drag support to be initiated.  This is called by 
	 * the various UI implementations in the <code>javax.swing.plaf.basic</code>
	 * package if the dragEnabled property is set on the component. 
	 * This can be called by custom UI 
	 * implementations to use the Swing drag support.  This method can also be called 
	 * by a Swing extension written as a subclass of <code>JComponent</code>
	 * to take advantage of the Swing drag support.
	 * <p>
	 * The transfer <em>will not necessarily</em> have been completed at the
	 * return of this call (i.e. the call does not block waiting for the drop).
	 * The transfer will take place through the Swing implementation of the
	 * <code>java.awt.dnd</code> mechanism, requiring no further effort
	 * from the developer. The <code>exportDone</code> method will be called
	 * when the transfer has completed.
	 *
	 * @param comp  the component holding the data to be transferred; this
	 *  argument is provided to enable sharing of <code>TransferHandler</code>s by
	 *  multiple components
	 * @param e     the event that triggered the transfer
	 * @param action the transfer action initially requested; this should
	 *  be a value of either <code>COPY</code> or <code>MOVE</code>;
	 *  the value may be changed during the course of the drag operation
	 */
	public void exportAsDrag(JComponent comp, InputEvent e, int action) {
		int srcActions = getSourceActions(comp);
		int dragAction = srcActions & action;
		if (!(e instanceof MouseEvent)) {
			// only mouse events supported for drag operations
			dragAction = NONE;
		}
		if (dragAction != NONE) { // && !GraphicsEnvironment.isHeadless()) {
			if (recognizer == null) {
				recognizer = new SwingDragGestureRecognizer(new DragHandler());
			}
			recognizer.gestured(comp, (MouseEvent) e, srcActions, dragAction);
		} else {
			exportDone(comp, null, NONE);
		}
	}

	/**
	 * Causes a transfer from the given component to the
	 * given clipboard.  This method is called by the default cut and
	 * copy actions registered in a component's action map.  
	 * <p>
	 * The transfer <em>will</em> have been completed at the
	 * return of this call.  The transfer will take place using the
	 * <code>java.awt.datatransfer</code> mechanism,
	 * requiring no further effort from the developer.
	 * The <code>exportDone</code> method will be called when the
	 * transfer has completed.
	 *
	 * @param comp  the component holding the data to be transferred; this
	 *  argument is provided to enable sharing of <code>TransferHandler</code>s by
	 *  multiple components
	 * @param clip  the clipboard to transfer the data into  
	 * @param action the transfer action requested; this should
	 *  be a value of either <code>COPY</code> or <code>MOVE</code>;
	 *  the operation performed is the intersection  of the transfer
	 *  capabilities given by getSourceActions and the requested action;
	 *  the intersection may result in an action of <code>NONE</code>
	 *  if the requested action isn't supported
	 */
	public void exportToClipboard(
		JComponent comp,
		Clipboard clip,
		int action) {
		boolean exportSuccess = false;
		Transferable t = null;

		int clipboardAction = getSourceActions(comp) & action;
		if (clipboardAction != NONE) {
			t = createTransferable(comp);
			if (t != null) {
				clip.setContents(t, null);
				exportSuccess = true;
			}
		}

		if (exportSuccess) {
			exportDone(comp, t, clipboardAction);
		} else {
			exportDone(comp, null, NONE);
		}
	}

	/**
	 * Causes a transfer to a component from a clipboard or a 
	 * DND drop operation.  The <code>Transferable</code> represents
	 * the data to be imported into the component.  
	 *
	 * @param comp  the component to receive the transfer; this
	 *  argument is provided to enable sharing of <code>TransferHandler</code>s 
	 *  by multiple components
	 * @param t     the data to import
	 * @return  true if the data was inserted into the component, false otherwise
	 */
	public boolean importData(JComponent comp, Transferable t) {
		PropertyDescriptor prop = getPropertyDescriptor(comp);
		if (prop != null) {
			Method writer = prop.getWriteMethod();
			if (writer == null) {
				// read-only property. ignore
				return false;
			}
			Class[] params = writer.getParameterTypes();
			if (params.length != 1) {
				// zero or more than one argument, ignore
				return false;
			}
			DataFlavor flavor =
				getPropertyDataFlavor(params[0], t.getTransferDataFlavors());
			if (flavor != null) {
				try {
					Object value = t.getTransferData(flavor);
					Object[] args = { value };
					writer.invoke(comp, args);
					return true;
				} catch (Exception ex) {
					System.err.println("Invocation failed");
					// invocation code
				}
			}
		}
		return false;
	}

	/**
	 * Indicates whether a component would accept an import of the given
	 * set of data flavors prior to actually attempting to import it. 
	 *
	 * @param comp  the component to receive the transfer; this
	 *  argument is provided to enable sharing of <code>TransferHandlers</code>
	 *  by multiple components
	 * @param transferFlavors  the data formats available
	 * @return  true if the data can be inserted into the component, false otherwise
	 */
	public boolean canImport(JComponent comp, DataFlavor[] transferFlavors) {
		PropertyDescriptor prop = getPropertyDescriptor(comp);
		if (prop != null) {
			Method writer = prop.getWriteMethod();
			if (writer == null) {
				// read-only property. ignore
				return false;
			}
			Class[] params = writer.getParameterTypes();
			if (params.length != 1) {
				// zero or more than one argument, ignore
				return false;
			}
			DataFlavor flavor =
				getPropertyDataFlavor(params[0], transferFlavors);
			if (flavor != null) {
				return true;
			}
		}
		return false;
	}

	/**
	 * Returns the type of transfer actions supported by the source. 
	 * Some models are not mutable, so a transfer operation of <code>COPY</code>
	 * only should be advertised in that case.
	 * 
	 * @param c  the component holding the data to be transferred; this
	 *  argument is provided to enable sharing of <code>TransferHandler</code>s
	 *  by multiple components.
	 * @return  <code>COPY</code> if the transfer property can be found,
	 *  otherwise returns <code>NONE</code>; a return value of
	 *  of <code>NONE</code> disables any transfers out of the component
	 */
	public int getSourceActions(JComponent c) {
		PropertyDescriptor prop = getPropertyDescriptor(c);
		if (prop != null) {
			return COPY;
		}
		return NONE;
	}

	/**
	 * Returns an object that establishes the look of a transfer.  This is
	 * useful for both providing feedback while performing a drag operation and for 
	 * representing the transfer in a clipboard implementation that has a visual 
	 * appearance.  The implementation of the <code>Icon</code> interface should
	 * not alter the graphics clip or alpha level. 
	 * The icon implementation need not be rectangular or paint all of the
	 * bounding rectangle and logic that calls the icons paint method should
	 * not assume the all bits are painted. <code>null</code> is a valid return value 
	 * for this method and indicates there is no visual representation provided.
	 * In that case, the calling logic is free to represent the
	 * transferable however it wants.  
	 * <p>
	 * The default Swing logic will not do an alpha blended drag animation if
	 * the return is <code>null</code>.
	 *
	 * @param t  the data to be transferred; this value is expected to have been 
	 *  created by the <code>createTransferable</code> method
	 * @return  <code>null</code>, indicating
	 *    there is no default visual representation
	 */
	public Icon getVisualRepresentation(Transferable t) {
		return null;
	}

	/**
	 * Creates a <code>Transferable</code> to use as the source for
	 * a data transfer. Returns the representation of the data to
	 * be transferred, or <code>null</code> if the component's
	 * property is <code>null</code>
	 *
	 * @param c  the component holding the data to be transferred; this
	 *  argument is provided to enable sharing of <code>TransferHandler</code>s
	 *  by multiple components
	 * @return  the representation of the data to be transferred, or
	 *  <code>null</code> if the property associated with <code>c</code>
	 *  is <code>null</code> 
	 *  
	 */
	protected Transferable createTransferable(JComponent c) {
		PropertyDescriptor property = getPropertyDescriptor(c);
		if (property != null) {
			return new PropertyTransferable(property, c);
		}
		return null;
	}

	/**
	 * Invoked after data has been exported.  This method should remove 
	 * the data that was transferred if the action was <code>MOVE</code>.
	 * <p>
	 * This method is implemented to do nothing since <code>MOVE</code>
	 * is not a supported action of this implementation
	 * (<code>getSourceActions</code> does not include <code>MOVE</code>).
	 *
	 * @param source the component that was the source of the data
	 * @param data   The data that was transferred or possibly null
	 *               if the action is <code>NONE</code>.
	 * @param action the actual action that was performed  
	 */
	protected void exportDone(
		JComponent source,
		Transferable data,
		int action) {
	}

	/**
	 * Fetches the property descriptor for the property assigned to this transfer
	 * handler on the given component (transfer handler may be shared).  This 
	 * returns <code>null</code> if the property descriptor can't be found
	 * or there is an error attempting to fetch the property descriptor.
	 */
	private PropertyDescriptor getPropertyDescriptor(JComponent comp) {
		if (propertyName == null) {
			return null;
		}
		Class k = comp.getClass();
		BeanInfo bi;
		try {
			bi = Introspector.getBeanInfo(k);
		} catch (IntrospectionException ex) {
			return null;
		}
		PropertyDescriptor props[] = bi.getPropertyDescriptors();
		for (int i = 0; i < props.length; i++) {
			if (propertyName.equals(props[i].getName())) {
				Method reader = props[i].getReadMethod();

				if (reader != null) {
					Class[] params = reader.getParameterTypes();

					if (params == null || params.length == 0) {
						// found the desired descriptor
						return props[i];
					}
				}
			}
		}
		return null;
	}

	/**
	 * Fetches the data flavor from the array of possible flavors that
	 * has data of the type represented by property type.  Null is
	 * returned if there is no match.
	 */
	private DataFlavor getPropertyDataFlavor(Class k, DataFlavor[] flavors) {
		for (int i = 0; i < flavors.length; i++) {
			DataFlavor flavor = flavors[i];
			if ("application".equals(flavor.getPrimaryType())
				&& "x-java-jvm-local-objectref".equals(flavor.getSubType())
				&& k.isAssignableFrom(flavor.getRepresentationClass())) {

				return flavor;
			}
		}
		return null;
	}

	private String propertyName;
	private static SwingDragGestureRecognizer recognizer = null;
	private static DropTargetListener dropLinkage = null;

	private static DropTargetListener getDropTargetListener() {
		if (dropLinkage == null) {
			dropLinkage = new DropHandler();
		}
		return dropLinkage;
	}

	static class PropertyTransferable implements Transferable {

		PropertyTransferable(PropertyDescriptor p, JComponent c) {
			property = p;
			component = c;
		}

		// --- Transferable methods ----------------------------------------------

		/**
		 * Returns an array of <code>DataFlavor</code> objects indicating the flavors the data 
		 * can be provided in.  The array should be ordered according to preference
		 * for providing the data (from most richly descriptive to least descriptive).
		 * @return an array of data flavors in which this data can be transferred
		 */
		public DataFlavor[] getTransferDataFlavors() {
			DataFlavor[] flavors = new DataFlavor[1];
			Class propertyType = property.getPropertyType();
			String mimeType =
				DataFlavor.javaJVMLocalObjectMimeType
					+ ";class="
					+ propertyType.getName();
			try {
				flavors[0] = new DataFlavor(mimeType);
			} catch (ClassNotFoundException cnfe) {
				flavors = new DataFlavor[0];
			}
			return flavors;
		}

		/**
		 * Returns whether the specified data flavor is supported for
		 * this object.
		 * @param flavor the requested flavor for the data
		 * @return true if this <code>DataFlavor</code> is supported,
		     *   otherwise false
		 */
		public boolean isDataFlavorSupported(DataFlavor flavor) {
			Class propertyType = property.getPropertyType();
			if ("application".equals(flavor.getPrimaryType())
				&& "x-java-jvm-local-objectref".equals(flavor.getSubType())
				&& flavor.getRepresentationClass().isAssignableFrom(
					propertyType)) {

				return true;
			}
			return false;
		}

		/**
		 * Returns an object which represents the data to be transferred.  The class 
		 * of the object returned is defined by the representation class of the flavor.
		 *
		 * @param flavor the requested flavor for the data
		 * @see DataFlavor#getRepresentationClass
		 * @exception IOException                if the data is no longer available
		 *              in the requested flavor.
		 * @exception UnsupportedFlavorException if the requested data flavor is
		 *              not supported.
		 */
		public Object getTransferData(DataFlavor flavor)
			throws UnsupportedFlavorException, IOException {
			if (!isDataFlavorSupported(flavor)) {
				throw new UnsupportedFlavorException(flavor);
			}
			Method reader = property.getReadMethod();
			Object value = null;
			try {
				value = reader.invoke(component, null);
			} catch (Exception ex) {
				throw new IOException(
					"Property read failed: " + property.getName());
			}
			return value;
		}

		JComponent component;
		PropertyDescriptor property;
	}

	/**
	 * This is the default drop target for drag and drop operations if
	 * one isn't provided by the developer.  <code>DropTarget</code>
	 * only supports one <code>DropTargetListener</code> and doesn't
	 * function properly if it isn't set.
	 * This class sets the one listener as the linkage of drop handling
	 * to the <code>TransferHandler</code>, and adds support for
	 * additional listeners which some of the <code>ComponentUI</code>
	 * implementations install to manipulate a drop insertion location.
	 */
	public static class SwingDropTarget
		extends DropTarget
		implements UIResource {

		public SwingDropTarget(JComponent c) {
			super();
			setComponent(c);
			try {
				super.addDropTargetListener(getDropTargetListener());
			} catch (TooManyListenersException tmle) {
			}
		}

		public void addDropTargetListener(DropTargetListener dtl)
			throws TooManyListenersException {
			// Since the super class only supports one DropTargetListener,
			// and we add one from the constructor, we always add to the
			// extended list.
			if (listenerList == null) {
				listenerList = new EventListenerList();
			}
			listenerList.add(DropTargetListener.class, dtl);
		}

		public void removeDropTargetListener(DropTargetListener dtl) {
			if (listenerList != null) {
				listenerList.remove(DropTargetListener.class, dtl);
			}
		}

		// --- DropTargetListener methods (multicast) --------------------------

		public void dragEnter(DropTargetDragEvent e) {
			super.dragEnter(e);
			if (listenerList != null) {
				Object[] listeners = listenerList.getListenerList();
				for (int i = listeners.length - 2; i >= 0; i -= 2) {
					if (listeners[i] == DropTargetListener.class) {
						((DropTargetListener) listeners[i + 1]).dragEnter(e);
					}
				}
			}
		}

		public void dragOver(DropTargetDragEvent e) {
			super.dragOver(e);
			if (listenerList != null) {
				Object[] listeners = listenerList.getListenerList();
				for (int i = listeners.length - 2; i >= 0; i -= 2) {
					if (listeners[i] == DropTargetListener.class) {
						((DropTargetListener) listeners[i + 1]).dragOver(e);
					}
				}
			}
		}

		public void dragExit(DropTargetEvent e) {
			super.dragExit(e);
			if (listenerList != null) {
				Object[] listeners = listenerList.getListenerList();
				for (int i = listeners.length - 2; i >= 0; i -= 2) {
					if (listeners[i] == DropTargetListener.class) {
						((DropTargetListener) listeners[i + 1]).dragExit(e);
					}
				}
			}
		}

		public void drop(DropTargetDropEvent e) {
			super.drop(e);
			if (listenerList != null) {
				Object[] listeners = listenerList.getListenerList();
				for (int i = listeners.length - 2; i >= 0; i -= 2) {
					if (listeners[i] == DropTargetListener.class) {
						((DropTargetListener) listeners[i + 1]).drop(e);
					}
				}
			}
		}

		public void dropActionChanged(DropTargetDragEvent e) {
			super.dropActionChanged(e);
			if (listenerList != null) {
				Object[] listeners = listenerList.getListenerList();
				for (int i = listeners.length - 2; i >= 0; i -= 2) {
					if (listeners[i] == DropTargetListener.class) {
						(
							(DropTargetListener) listeners[i
								+ 1]).dropActionChanged(
							e);
					}
				}
			}
		}

		private EventListenerList listenerList;
	}

	private static class DropHandler
		implements DropTargetListener, Serializable {

		private boolean canImport;

		private boolean actionSupported(int action) {
			return (action & COPY_OR_MOVE) != NONE;
		}

		// --- DropTargetListener methods -----------------------------------

		public void dragEnter(DropTargetDragEvent e) {
			DataFlavor[] flavors = e.getCurrentDataFlavors();

			JDNDAdapter c =
				(JDNDAdapter) e.getDropTargetContext().getComponent();
			TransferHandler importer = c.getTransferHandler();

			if (importer != null
				&& importer.canImport((JComponent) c, flavors)) {
				canImport = true;
			} else {
				canImport = false;
			}

			int dropAction = e.getDropAction();

			if (canImport && actionSupported(dropAction)) {
				e.acceptDrag(dropAction);
			} else {
				e.rejectDrag();
			}
		}

		public void dragOver(DropTargetDragEvent e) {
			int dropAction = e.getDropAction();

			if (canImport && actionSupported(dropAction)) {
				e.acceptDrag(dropAction);
			} else {
				e.rejectDrag();
			}
		}

		public void dragExit(DropTargetEvent e) {
		}

		public void drop(DropTargetDropEvent e) {
			int dropAction = e.getDropAction();

			JDNDAdapter c =
				(JDNDAdapter) e.getDropTargetContext().getComponent();
			TransferHandler importer = c.getTransferHandler();

			if (canImport && importer != null && actionSupported(dropAction)) {
				e.acceptDrop(dropAction);

				try {
					Transferable t = e.getTransferable();
					e.dropComplete(importer.importData((JComponent) c, t));
				} catch (RuntimeException re) {
					e.dropComplete(false);
				}
			} else {
				e.rejectDrop();
			}
		}

		public void dropActionChanged(DropTargetDragEvent e) {
			int dropAction = e.getDropAction();

			if (canImport && actionSupported(dropAction)) {
				e.acceptDrag(dropAction);
			} else {
				e.rejectDrag();
			}
		}
	}

	/**
	 * This is the default drag handler for drag and drop operations that 
	 * use the <code>TransferHandler</code>.
	 */
	private static class DragHandler
		implements DragGestureListener, DragSourceListener {

		private boolean scrolls;

		// --- DragGestureListener methods -----------------------------------

		/**
		 * a Drag gesture has been recognized
		 */
		public void dragGestureRecognized(DragGestureEvent dge) {
			JDNDAdapter c = (JDNDAdapter) dge.getComponent();
			TransferHandler th = c.getTransferHandler();
			Transferable t = th.createTransferable((JComponent) c);
			if (t != null) {
				scrolls = ((JComponent) c).getAutoscrolls();
				((JComponent) c).setAutoscrolls(false);
				try {
					dge.startDrag(null, t, this);
					return;
				} catch (RuntimeException re) {
					((JComponent) c).setAutoscrolls(scrolls);
				}
			}

			th.exportDone((JComponent) c, null, NONE);
		}

		// --- DragSourceListener methods -----------------------------------

		/**
		 * as the hotspot enters a platform dependent drop site
		 */
		public void dragEnter(DragSourceDragEvent dsde) {
		}

		/**
		 * as the hotspot moves over a platform dependent drop site
		 */
		public void dragOver(DragSourceDragEvent dsde) {
		}

		/**
		 * as the hotspot exits a platform dependent drop site
		 */
		public void dragExit(DragSourceEvent dsde) {
		}

		/**
		 * as the operation completes
		 */
		public void dragDropEnd(DragSourceDropEvent dsde) {
			DragSourceContext dsc = dsde.getDragSourceContext();
			JDNDAdapter c = (JDNDAdapter) dsc.getComponent();
			if (dsde.getDropSuccess()) {
				c.getTransferHandler().exportDone(
					(JComponent) c,
					dsc.getTransferable(),
					dsde.getDropAction());
			} else {
				c.getTransferHandler().exportDone((JComponent) c, null, NONE);
			}
			((JComponent) c).setAutoscrolls(scrolls);
		}

		public void dropActionChanged(DragSourceDragEvent dsde) {
		}
	}

	private static class SwingDragGestureRecognizer
		extends DragGestureRecognizer {

		SwingDragGestureRecognizer(DragGestureListener dgl) {
			super(DragSource.getDefaultDragSource(), null, NONE, dgl);
		}

		void gestured(JComponent c, MouseEvent e, int srcActions, int action) {
			setComponent(c);
			setSourceActions(srcActions);
			appendEvent(e);
			fireDragGestureRecognized(action, e.getPoint());
		}

		/**
		 * register this DragGestureRecognizer's Listeners with the Component
		 */
		protected void registerListeners() {
		}

		/**
		 * unregister this DragGestureRecognizer's Listeners with the Component
		 *
		 * subclasses must override this method
		 */
		protected void unregisterListeners() {
		}

	}

	static final Action cutAction = new TransferAction("cut");
	static final Action copyAction = new TransferAction("copy");
	static final Action pasteAction = new TransferAction("paste");

	static class TransferAction extends AbstractAction implements UIResource {

		TransferAction(String name) {
			super(name);
			// Will cause the system clipboard state to be updated.
			canAccessSystemClipboard = true;
			canAccessSystemClipboard();
		}

		public void actionPerformed(ActionEvent e) {
			Object src = e.getSource();
			if (src instanceof JDNDAdapter) {
				JDNDAdapter c = (JDNDAdapter) src;
				TransferHandler th = c.getTransferHandler();
				Clipboard clipboard = getClipboard((JComponent) c);
				String name = (String) getValue(Action.NAME);
				if ((clipboard != null) && (th != null) && (name != null)) {
					if ("cut".equals(name)) {
						th.exportToClipboard((JComponent) c, clipboard, MOVE);
					} else if ("copy".equals(name)) {
						th.exportToClipboard((JComponent) c, clipboard, COPY);
					} else if ("paste".equals(name)) {
						Transferable trans = clipboard.getContents(null);
						if (trans != null) {
							th.importData((JComponent) c, trans);
						}
					}
				}
			}
		}

		/**
		 * Returns the clipboard to use for cut/copy/paste.
		 */
		private Clipboard getClipboard(JComponent c) {
			if (canAccessSystemClipboard()) {
				return c.getToolkit().getSystemClipboard();
			}
			Clipboard clipboard =
				(Clipboard) sun.awt.AppContext.getAppContext().get(
					SandboxClipboardKey);
			if (clipboard == null) {
				clipboard = new Clipboard("Sandboxed Component Clipboard");
				sun.awt.AppContext.getAppContext().put(
					SandboxClipboardKey,
					clipboard);
			}
			return clipboard;
		}

		/**
		 * Returns true if it is safe to access the system Clipboard.
		 * If the environment is headless or the security manager
		 * does not allow access to the system clipboard, a private
		 * clipboard is used.
		 */
		private boolean canAccessSystemClipboard() {
			if (canAccessSystemClipboard) {
				if (false) { //(GraphicsEnvironment.isHeadless()) {
					canAccessSystemClipboard = false;
					return false;
				}

				SecurityManager sm = System.getSecurityManager();
				if (sm != null) {
					try {
						sm.checkSystemClipboardAccess();
						return true;
					} catch (SecurityException se) {
						canAccessSystemClipboard = false;
						return false;
					}
				}
				return true;
			}
			return false;
		}

		/**
		 * Indicates if it is safe to access the system clipboard. Once false,
		 * access will never be checked again.
		 */
		private boolean canAccessSystemClipboard;

		/**
		 * Key used in app context to lookup Clipboard to use if access to
		 * System clipboard is denied.
		 */
		private static Object SandboxClipboardKey = new Object();

	}

}
		]]></echo>
	</target>

</project>