Java Doc for IUnEventChannel.java in  » J2EE » WiSerFramework » de » ug2t » unifiedGui » interfaces » 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 » WiSerFramework » de.ug2t.unifiedGui.interfaces 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.ug2t.unifiedGui.interfaces.IUnEventChannel

All known Subclasses:   de.ug2t.channel.ho.server.generic.HoSrvGenericEventChannel,  de.ug2t.channel.markup.generic.MuGenericEventChannel,  de.ug2t.channel.ho.client.swing.HoSwingEventChannel,
IUnEventChannel
public interface IUnEventChannel extends IKeTreeNode(Code)

author:
   Dirk
author:
   date: 10.09.2003 project: WiSer-Framework
author:
  


author:
   This is the common interface to an event-channel. The purpose of an
author:
   event-channel is to receive, transport and deliver an event. The current
author:
   interface supports the following event-types: Drag, Drop, Getfocus, Lostfocus
author:
   and Click
author:
  


Inner Class :public static class Factory
Inner Class :public class UnEventChannelHelper

Field Summary
final public static  intEVENT_CLICK
    
final public static  intEVENT_DBCLICK
    
final public static  intEVENT_DRAG
    
final public static  intEVENT_DROP
    
final public static  intEVENT_GETF
    
final public static  intEVENT_KEYACTION
    
final public static  intEVENT_LOSTF
    
final public static  intEVENT_MOUSEENTER
    
final public static  intEVENT_MOUSELEAVE
    
final public static  intEVENT_MOVE
    
final public static  intEVENT_POSITION
    
final public static  intEVENT_RCLICK
    
final public static  intEVENT_SCROLL
    
final public static  intEVENT_SELECT
    
final public static  String[]EVENTs
    


Method Summary
public  voidpcmf_addListener(IUnGuiEventListener xListener)
    

Adds a listener to the widget.

public  voidpcmf_disableSubmit()
    
public  voidpcmf_enableSubmit()
    

Enables the submit flag of a widget.

public  Stringpcmf_getKeyFilter()
    

Gets the keyFilter for a keyeventchannel.

public  intpcmf_getType()
    

Gets the type of the event.

public  UnComponentpcmf_getUnComponent()
    

Gets the associated gui-object which implements all common methods.

public  booleanpcmf_isReceiveEvent()
    
public  booleanpcmf_isRefreshParent()
    
public  booleanpcmf_isSubmit()
    

Disables the submit flag of a widget.

public  voidpcmf_receiveEvent()
    

Sets the channel as the receiver of the event.

public  voidpcmf_refreshParent()
    

Sets that the parent node is refreshed when a channels event comes up.

public  voidpcmf_remListener(IUnGuiEventListener xListener)
    

Removes a listener from a widget.

public  voidpcmf_setKeyFilter(String xFilter)
    

Sets the keyFilter for a keyeventchannel.


Field Detail
EVENT_CLICK
final public static int EVENT_CLICK(Code)



EVENT_DBCLICK
final public static int EVENT_DBCLICK(Code)



EVENT_DRAG
final public static int EVENT_DRAG(Code)



EVENT_DROP
final public static int EVENT_DROP(Code)



EVENT_GETF
final public static int EVENT_GETF(Code)



EVENT_KEYACTION
final public static int EVENT_KEYACTION(Code)



EVENT_LOSTF
final public static int EVENT_LOSTF(Code)



EVENT_MOUSEENTER
final public static int EVENT_MOUSEENTER(Code)



EVENT_MOUSELEAVE
final public static int EVENT_MOUSELEAVE(Code)



EVENT_MOVE
final public static int EVENT_MOVE(Code)



EVENT_POSITION
final public static int EVENT_POSITION(Code)



EVENT_RCLICK
final public static int EVENT_RCLICK(Code)



EVENT_SCROLL
final public static int EVENT_SCROLL(Code)



EVENT_SELECT
final public static int EVENT_SELECT(Code)



EVENTs
final public static String[] EVENTs(Code)





Method Detail
pcmf_addListener
public void pcmf_addListener(IUnGuiEventListener xListener)(Code)

Adds a listener to the widget. The listener is called every time the value of the widget is changed by the gui.


Parameters:
  xListener - listener to add




pcmf_disableSubmit
public void pcmf_disableSubmit()(Code)

Disables the submit Flag of a component




pcmf_enableSubmit
public void pcmf_enableSubmit()(Code)

Enables the submit flag of a widget. If this flag is enabled a change of the widget value within the gui, or lost of focus leads to a server-side event-dispatch.




pcmf_getKeyFilter
public String pcmf_getKeyFilter()(Code)

Gets the keyFilter for a keyeventchannel.

keyeventfilter as regexp




pcmf_getType
public int pcmf_getType()(Code)

Gets the type of the event.

event-type: EVENT_DRAG, EVENT_DROP, EVENT_GETF, EVENT_LOSTF,EVENT_CLICK, EVENT_RCLICK, EVENT_MOVE




pcmf_getUnComponent
public UnComponent pcmf_getUnComponent()(Code)

Gets the associated gui-object which implements all common methods.

gui-object




pcmf_isReceiveEvent
public boolean pcmf_isReceiveEvent()(Code)

Returns the receive flag

flag




pcmf_isRefreshParent
public boolean pcmf_isRefreshParent()(Code)

Returns the refresh flag

flag




pcmf_isSubmit
public boolean pcmf_isSubmit()(Code)

Disables the submit flag of a widget. If this flag is disabled the widgets value will be stored at client-side until an other widget initiates a server-side event-dispatch




pcmf_receiveEvent
public void pcmf_receiveEvent()(Code)

Sets the channel as the receiver of the event. Default is that the parent receives the event. That means that the channel listener is called but the parent is given as paramter to the listener




pcmf_refreshParent
public void pcmf_refreshParent()(Code)

Sets that the parent node is refreshed when a channels event comes up. As a result listenrs to the channels parent are called when a channeled event ocures. The default is not to refresh the parent




pcmf_remListener
public void pcmf_remListener(IUnGuiEventListener xListener)(Code)

Removes a listener from a widget.


Parameters:
  xListener - listener to remove




pcmf_setKeyFilter
public void pcmf_setKeyFilter(String xFilter)(Code)

Sets the keyFilter for a keyeventchannel.


Parameters:
  keyfilter - string as regular expression




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