Java Doc for DndEvent.java in  » J2EE » ICEfaces-1.6.1 » com » icesoft » faces » component » dragdrop » 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 » J2EE » ICEfaces 1.6.1 » com.icesoft.faces.component.dragdrop 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.icesoft.faces.component.dragdrop.DndEvent

All known Subclasses:   com.icesoft.faces.component.dragdrop.DragEvent,  com.icesoft.faces.component.dragdrop.DropEvent,
DndEvent
public class DndEvent extends FacesEvent (Code)
A DnDEvent is passed to Drag and Drop Event listeners. It contains all the information on the type of event, and the components involved.


Field Summary
final public static  intDRAGGING
    
final public static  intDRAG_CANCEL
     Event type for when a Draggable panel has been dropped, but not on a drop target.
final public static  intDRAG_START
    
final public static  intDROPPED
     Event type for when a Draggable panel has been dropped on a drop target.
final public static  intHOVER_END
     Event type for when a Drgabble panel is no longer hovering over a drop target.
final public static  intHOVER_START
     Event type for when a Draggable panel is being hovered over a drop target.
final public static  StringMASK_ALL
     Mask to cover all DnD Events.
final public static  StringMASK_ALL_BUT_DROPS
    

Constructor Summary
public  DndEvent(UIComponent uiComponent, int eventType, String targetClentId, Object targetDragValue, Object targetDropValue)
     DnDEvent This constructor is called by Drag and Drop components in the Decode method.

Method Summary
public static  StringgetEventName(int i)
    
public  intgetEventType()
     Event type for the Event.
public  StringgetTargetClientId()
     The clientId of the target Panel Group.
public  ObjectgetTargetDragValue()
    
public  ObjectgetTargetDropValue()
    
public  booleanisAppropriateListener(FacesListener facesListener)
    
public static  StringparseMask(String mask)
     Parse a mask value to make its valid, Used in rendering.
public  voidprocessListener(FacesListener facesListener)
    

Field Detail
DRAGGING
final public static int DRAGGING(Code)



DRAG_CANCEL
final public static int DRAG_CANCEL(Code)
Event type for when a Draggable panel has been dropped, but not on a drop target.



DRAG_START
final public static int DRAG_START(Code)
Event type for when a Draggable panel is starting to drag



DROPPED
final public static int DROPPED(Code)
Event type for when a Draggable panel has been dropped on a drop target. The dndComponent will be set to the drop target for this event



HOVER_END
final public static int HOVER_END(Code)
Event type for when a Drgabble panel is no longer hovering over a drop target.



HOVER_START
final public static int HOVER_START(Code)
Event type for when a Draggable panel is being hovered over a drop target. The dndComponent will be set to the drop target for this event



MASK_ALL
final public static String MASK_ALL(Code)
Mask to cover all DnD Events.



MASK_ALL_BUT_DROPS
final public static String MASK_ALL_BUT_DROPS(Code)




Constructor Detail
DndEvent
public DndEvent(UIComponent uiComponent, int eventType, String targetClentId, Object targetDragValue, Object targetDropValue)(Code)
DnDEvent This constructor is called by Drag and Drop components in the Decode method.
Parameters:
  uiComponent -
Parameters:
  eventType -
Parameters:
  targetClentId -
Parameters:
  targetDragValue -
Parameters:
  targetDropValue -




Method Detail
getEventName
public static String getEventName(int i)(Code)



getEventType
public int getEventType()(Code)
Event type for the Event. Possible values are DRAG_START, DRAG_CANCEL, DROPPED, HOVER_START HOVER_END int eventType



getTargetClientId
public String getTargetClientId()(Code)
The clientId of the target Panel Group. Null for DRAG_START, DRAG_CANCEL, and HOVER_END events String targetClientId



getTargetDragValue
public Object getTargetDragValue()(Code)
The drag value assigned to the target PanelGroup Null for DRAG_START, DRAG_CANCEL, and HOVER_END events Object targetDragValue



getTargetDropValue
public Object getTargetDropValue()(Code)
The drop value assigned to the target PanelGroup Null for DRAG_START, DRAG_CANCEL, and HOVER_END events Object targetDropValue



isAppropriateListener
public boolean isAppropriateListener(FacesListener facesListener)(Code)
False
Parameters:
  facesListener - boolean



parseMask
public static String parseMask(String mask)(Code)
Parse a mask value to make its valid, Used in rendering.
Parameters:
  mask - String mask



processListener
public void processListener(FacesListener facesListener)(Code)
Not implemented
Parameters:
  facesListener -



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