KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > beans > EventSetDescriptor

java.beans
Class EventSetDescriptor

java.lang.Object
  extended by java.beans.FeatureDescriptor
      extended by java.beans.EventSetDescriptor
See Also:
Top Examples, Source Code

public EventSetDescriptor(Class<?> sourceClass,
                          String eventSetName,
                          Class<?> listenerType,
                          String listenerMethodName)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EventSetDescriptor(Class<?> sourceClass,
                          String eventSetName,
                          Class<?> listenerType,
                          String[] listenerMethodNames,
                          String addListenerMethodName,
                          String removeListenerMethodName)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EventSetDescriptor(Class<?> sourceClass,
                          String eventSetName,
                          Class<?> listenerType,
                          String[] listenerMethodNames,
                          String addListenerMethodName,
                          String removeListenerMethodName,
                          String getListenerMethodName)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EventSetDescriptor(String eventSetName,
                          Class<?> listenerType,
                          MethodDescriptor[] listenerMethodDescriptors,
                          Method addListenerMethod,
                          Method removeListenerMethod)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EventSetDescriptor(String eventSetName,
                          Class<?> listenerType,
                          Method[] listenerMethods,
                          Method addListenerMethod,
                          Method removeListenerMethod)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EventSetDescriptor(String eventSetName,
                          Class<?> listenerType,
                          Method[] listenerMethods,
                          Method addListenerMethod,
                          Method removeListenerMethod,
                          Method getListenerMethod)
                   throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method getAddListenerMethod()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method getGetListenerMethod()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MethodDescriptor[] getListenerMethodDescriptors()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method[] getListenerMethods()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Class<?> getListenerType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method getRemoveListenerMethod()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isInDefaultEventSet()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isUnicast()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setInDefaultEventSet(boolean inDefaultEventSet)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setUnicast(boolean unicast)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags