Class EventSetDescriptor

    • Constructor Detail

      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.Class<?> sourceClass,
                                  java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  java.lang.String listenerMethodName)
                           throws IntrospectionException
        Throws:
        IntrospectionException
      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.Class<?> sourceClass,
                                  java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  java.lang.String[] listenerMethodNames,
                                  java.lang.String addListenerMethodName,
                                  java.lang.String removeListenerMethodName)
                           throws IntrospectionException
        Throws:
        IntrospectionException
      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.Class<?> sourceClass,
                                  java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  java.lang.String[] listenerMethodNames,
                                  java.lang.String addListenerMethodName,
                                  java.lang.String removeListenerMethodName,
                                  java.lang.String getListenerMethodName)
                           throws IntrospectionException
        Throws:
        IntrospectionException
      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  java.lang.reflect.Method[] listenerMethods,
                                  java.lang.reflect.Method addListenerMethod,
                                  java.lang.reflect.Method removeListenerMethod)
                           throws IntrospectionException
        Throws:
        IntrospectionException
      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  java.lang.reflect.Method[] listenerMethods,
                                  java.lang.reflect.Method addListenerMethod,
                                  java.lang.reflect.Method removeListenerMethod,
                                  java.lang.reflect.Method getListenerMethod)
                           throws IntrospectionException
        Throws:
        IntrospectionException
      • EventSetDescriptor

        public EventSetDescriptor​(java.lang.String eventSetName,
                                  java.lang.Class<?> listenerType,
                                  MethodDescriptor[] listenerMethodDescriptors,
                                  java.lang.reflect.Method addListenerMethod,
                                  java.lang.reflect.Method removeListenerMethod)
                           throws IntrospectionException
        Throws:
        IntrospectionException
    • Method Detail

      • getListenerMethods

        public java.lang.reflect.Method[] getListenerMethods()
      • getListenerMethodDescriptors

        public MethodDescriptor[] getListenerMethodDescriptors()
      • getRemoveListenerMethod

        public java.lang.reflect.Method getRemoveListenerMethod()
      • getGetListenerMethod

        public java.lang.reflect.Method getGetListenerMethod()
      • getAddListenerMethod

        public java.lang.reflect.Method getAddListenerMethod()
      • getListenerType

        public java.lang.Class<?> getListenerType()
      • setUnicast

        public void setUnicast​(boolean unicast)
      • setInDefaultEventSet

        public void setInDefaultEventSet​(boolean inDefaultEventSet)
      • isUnicast

        public boolean isUnicast()
      • isInDefaultEventSet

        public boolean isInDefaultEventSet()