Java Doc for TextTransferHandler.java in  » IDE-Netbeans » visualweb.api.designer » org » netbeans » modules » visualweb » extension » openide » text » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » visualweb.api.designer » org.netbeans.modules.visualweb.extension.openide.text 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.swing.TransferHandler
      org.netbeans.modules.visualweb.extension.openide.text.TextTransferHandler

TextTransferHandler
public class TextTransferHandler extends TransferHandler implements UIResource(Code)

Inner Class :static class TextTransferable implements Transferable,UIResource
Inner Class :public static class CodeClipTransferData extends StringSelection

Field Summary
public static  booleandontRemove
     Flag which is only defined during a drag & drop operation. Clients (typically drop zones) can set it to true to indicate that the data being dragged should be copied, not moved. For example, the clipboard viewer sets this when it handles the import.


Method Summary
public  booleancanImport(JComponent comp, DataFlavor[] flavors)
     This method indicates if a component would accept an import of the given set of data flavors prior to actually attempting to import it.
protected  TransferablecreateTransferable(JComponent comp)
     Create a Transferable to use as the source for a data transfer.
Parameters:
  comp - The component holding the data to be transfered.
protected  voidexportDone(JComponent source, Transferable data, int action)
     This method is called after data has been exported.
protected  DataFlavorgetImportFlavor(DataFlavor[] flavors, JTextComponent c)
     Try to find a flavor that can be used to import a Transferable.
public  intgetSourceActions(JComponent c)
     This is the type of transfer actions supported by the source.
protected  voidhandleReaderImport(Reader in, JTextComponent c, boolean useRead)
     Import the given stream data into the text component.
public  booleanimportData(JComponent comp, Transferable t)
     This method causes a transfer to a component from a clipboard or a DND drop operation.

Field Detail
dontRemove
public static boolean dontRemove(Code)
Flag which is only defined during a drag & drop operation. Clients (typically drop zones) can set it to true to indicate that the data being dragged should be copied, not moved. For example, the clipboard viewer sets this when it handles the import. That way, the exportDone method knows not to remove the text being placed on the clipboard from the document, since text dragging (without modified keys) defaults to moving, not copying. And we don't want to disallow copying in getSourceActions, since dragging text from one place in the document to another SHOULD be moved, not copied.





Method Detail
canImport
public boolean canImport(JComponent comp, DataFlavor[] flavors)(Code)
This method indicates if a component would accept an import of the given set of data flavors prior to actually attempting to import it.
Parameters:
  comp - The component to receive the transfer. Thisargument is provided to enable sharing of TransferHandlers bymultiple components.
Parameters:
  flavors - The data formats available true if the data can be inserted into the component, false otherwise.



createTransferable
protected Transferable createTransferable(JComponent comp)(Code)
Create a Transferable to use as the source for a data transfer.
Parameters:
  comp - The component holding the data to be transfered. Thisargument is provided to enable sharing of TransferHandlers bymultiple components. The representation of the data to be transfered.



exportDone
protected void exportDone(JComponent source, Transferable data, int action)(Code)
This method is called after data has been exported. This method should remove the data that was transfered if the action was MOVE.
Parameters:
  source - The component that was the source of the data.
Parameters:
  data - The data that was transferred or possibly nullif the action is NONE.
Parameters:
  action - The actual action that was performed.



getImportFlavor
protected DataFlavor getImportFlavor(DataFlavor[] flavors, JTextComponent c)(Code)
Try to find a flavor that can be used to import a Transferable. The set of usable flavors are tried in the following order:
  1. First, an attempt is made to find a flavor matching the content type of the EditorKit for the component.
  2. Second, an attempt to find a text/plain flavor is made.
  3. Third, an attempt to find a flavor representing a String reference in the same VM is made.
  4. Lastly, DataFlavor.stringFlavor is searched for.



getSourceActions
public int getSourceActions(JComponent c)(Code)
This is the type of transfer actions supported by the source. Some models are not mutable, so a transfer operation of COPY only should be advertised in that case.
Parameters:
  c - The component holding the data to be transfered. Thisargument is provided to enable sharing of TransferHandlers bymultiple components. This is implemented to return NONE if the component is a JPasswordFieldsince exporting data via user gestures is not allowed. If the text component iseditable, COPY_OR_MOVE is returned, otherwise just COPY is allowed.



handleReaderImport
protected void handleReaderImport(Reader in, JTextComponent c, boolean useRead) throws BadLocationException, IOException(Code)
Import the given stream data into the text component.



importData
public boolean importData(JComponent comp, Transferable t)(Code)
This method causes a transfer to a component from a clipboard or a DND drop operation. The Transferable represents the data to be imported into the component.
Parameters:
  comp - The component to receive the transfer. Thisargument is provided to enable sharing of TransferHandlers bymultiple components.
Parameters:
  t - The data to import true if the data was inserted into the component, false otherwise.



Fields inherited from javax.swing.TransferHandler
final public static int COPY(Code)(Java Doc)
final public static int COPY_OR_MOVE(Code)(Java Doc)
final public static int LINK(Code)(Java Doc)
final public static int MOVE(Code)(Java Doc)
final public static int NONE(Code)(Java Doc)

Methods inherited from javax.swing.TransferHandler
public boolean canImport(TransferSupport support)(Code)(Java Doc)
public boolean canImport(JComponent comp, DataFlavor[] transferFlavors)(Code)(Java Doc)
protected Transferable createTransferable(JComponent c)(Code)(Java Doc)
public void exportAsDrag(JComponent comp, InputEvent e, int action)(Code)(Java Doc)
protected void exportDone(JComponent source, Transferable data, int action)(Code)(Java Doc)
public void exportToClipboard(JComponent comp, Clipboard clip, int action) throws IllegalStateException(Code)(Java Doc)
public static Action getCopyAction()(Code)(Java Doc)
public static Action getCutAction()(Code)(Java Doc)
public static Action getPasteAction()(Code)(Java Doc)
public int getSourceActions(JComponent c)(Code)(Java Doc)
public Icon getVisualRepresentation(Transferable t)(Code)(Java Doc)
public boolean importData(TransferSupport support)(Code)(Java Doc)
public boolean importData(JComponent comp, Transferable t)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.