I want to add custom handler to my custom component,but i am using @FacesComponent annotation to provide the tag name and the namespace and i don't have an XML file to contains my component's information
public class MyHandler extends ComponentHandler
Normally people do the following:
<handler-class>MyHandler</handler-class>
How can i specify my handler-class in my custom component class?
handler-classfor ui-components - Kukeltjehandler-class,but i need to defined one in order to override some methods in it. - Montaser