FileDocCategorySizeDatePackage
EventSetDescriptor.javaAPI DocJava SE 6 API18240Tue Jun 10 00:25:30 BST 2008java.beans

EventSetDescriptor

public class EventSetDescriptor extends FeatureDescriptor
An EventSetDescriptor describes a group of events that a given Java bean fires.

The given group of events are all delivered as method calls on a single event listener interface, and an event listener object can be registered via a call on a registration method supplied by the event source.

Fields Summary
private MethodDescriptor[]
listenerMethodDescriptors
private MethodDescriptor
addMethodDescriptor
private MethodDescriptor
removeMethodDescriptor
private MethodDescriptor
getMethodDescriptor
private Reference
listenerMethodsRef
private Reference
listenerTypeRef
private boolean
unicast
private boolean
inDefaultEventSet
Constructors Summary
public EventSetDescriptor(Class sourceClass, String eventSetName, Class listenerType, String listenerMethodName)
Creates an EventSetDescriptor assuming that you are following the most simple standard design pattern where a named event "fred" is (1) delivered as a call on the single method of interface FredListener, (2) has a single argument of type FredEvent, and (3) where the FredListener may be registered with a call on an addFredListener method of the source component and removed with a call on a removeFredListener method.

param
sourceClass The class firing the event.
param
eventSetName The programmatic name of the event. E.g. "fred". Note that this should normally start with a lower-case character.
param
listenerType The target interface that events will get delivered to.
param
listenerMethodName The method that will get called when the event gets delivered to its target listener interface.
exception
IntrospectionException if an exception occurs during introspection.


                                                                                            		                 		                		                               
        
		    
		  
	this(sourceClass, eventSetName, listenerType, 
	     new String[] { listenerMethodName },
	     "add" + getListenerClassName(listenerType),
	     "remove" + getListenerClassName(listenerType),
	     "get" + getListenerClassName(listenerType) + "s");

	String eventName = capitalize(eventSetName) + "Event";
	Method[] listenerMethods = getListenerMethods();
	if (listenerMethods.length > 0) {
	    Class[] args = listenerMethods[0].getParameterTypes();
	    // Check for EventSet compliance. Special case for vetoableChange. See 4529996
	    if (!"vetoableChange".equals(eventSetName) && !args[0].getName().endsWith(eventName)) {
                throw new IntrospectionException("Method \"" + listenerMethodName +
						 "\" should have argument \"" + 
						 eventName + "\"");
	    }
	}
    
EventSetDescriptor(EventSetDescriptor x, EventSetDescriptor y)

	super(x,y);
	listenerMethodDescriptors = x.listenerMethodDescriptors;
	if (y.listenerMethodDescriptors != null) {
	    listenerMethodDescriptors = y.listenerMethodDescriptors;
	}

        listenerTypeRef = x.listenerTypeRef;
	if (y.listenerTypeRef != null) {
	    listenerTypeRef = y.listenerTypeRef;
	}

        addMethodDescriptor = x.addMethodDescriptor;
        if (y.addMethodDescriptor != null) {
            addMethodDescriptor = y.addMethodDescriptor;
        }

        removeMethodDescriptor = x.removeMethodDescriptor;
        if (y.removeMethodDescriptor != null) {
            removeMethodDescriptor = y.removeMethodDescriptor;
        }

        getMethodDescriptor = x.getMethodDescriptor;
        if (y.getMethodDescriptor != null) {
            getMethodDescriptor = y.getMethodDescriptor;
        }

	unicast = y.unicast;
	if (!x.inDefaultEventSet || !y.inDefaultEventSet) {
	    inDefaultEventSet = false;
	}
    
EventSetDescriptor(EventSetDescriptor old)

	super(old);
	if (old.listenerMethodDescriptors != null) {
	    int len = old.listenerMethodDescriptors.length;
	    listenerMethodDescriptors = new MethodDescriptor[len];
	    for (int i = 0; i < len; i++) {
		listenerMethodDescriptors[i] = new MethodDescriptor(
					old.listenerMethodDescriptors[i]);
	    }
	}
	listenerTypeRef = old.listenerTypeRef;

        addMethodDescriptor = old.addMethodDescriptor;
        removeMethodDescriptor = old.removeMethodDescriptor;
        getMethodDescriptor = old.getMethodDescriptor;

	unicast = old.unicast;
	inDefaultEventSet = old.inDefaultEventSet;
    
public EventSetDescriptor(Class sourceClass, String eventSetName, Class listenerType, String[] listenerMethodNames, String addListenerMethodName, String removeListenerMethodName)
Creates an EventSetDescriptor from scratch using string names.

param
sourceClass The class firing the event.
param
eventSetName The programmatic name of the event set. Note that this should normally start with a lower-case character.
param
listenerType The Class of the target interface that events will get delivered to.
param
listenerMethodNames The names of the methods that will get called when the event gets delivered to its target listener interface.
param
addListenerMethodName The name of the method on the event source that can be used to register an event listener object.
param
removeListenerMethodName The name of the method on the event source that can be used to de-register an event listener object.
exception
IntrospectionException if an exception occurs during introspection.

	this(sourceClass, eventSetName, listenerType,
	     listenerMethodNames, addListenerMethodName, 
	     removeListenerMethodName, null);
    
public EventSetDescriptor(Class sourceClass, String eventSetName, Class listenerType, String[] listenerMethodNames, String addListenerMethodName, String removeListenerMethodName, String getListenerMethodName)
This constructor creates an EventSetDescriptor from scratch using string names.

param
sourceClass The class firing the event.
param
eventSetName The programmatic name of the event set. Note that this should normally start with a lower-case character.
param
listenerType The Class of the target interface that events will get delivered to.
param
listenerMethodNames The names of the methods that will get called when the event gets delivered to its target listener interface.
param
addListenerMethodName The name of the method on the event source that can be used to register an event listener object.
param
removeListenerMethodName The name of the method on the event source that can be used to de-register an event listener object.
param
getListenerMethodName The method on the event source that can be used to access the array of event listener objects.
exception
IntrospectionException if an exception occurs during introspection.
since
1.4

	if (sourceClass == null || eventSetName == null || listenerType == null) {
	    throw new NullPointerException();
	}
	setName(eventSetName);
	setClass0(sourceClass);
	setListenerType(listenerType);
	
	Method[] listenerMethods = new Method[listenerMethodNames.length];
	for (int i = 0; i < listenerMethodNames.length; i++) {
	    // Check for null names
	    if (listenerMethodNames[i] == null) {
		throw new NullPointerException();
	    }
	    listenerMethods[i] = getMethod(listenerType, listenerMethodNames[i], 1);
	}
	setListenerMethods(listenerMethods);

	setAddListenerMethod(getMethod(sourceClass, addListenerMethodName, 1));
	setRemoveListenerMethod(getMethod(sourceClass, removeListenerMethodName, 1));

	// Be more forgiving of not finding the getListener method.
	Method method = Introspector.findMethod(sourceClass, 
						getListenerMethodName, 0);
	if (method != null) {
	    setGetListenerMethod(method);
	}
    
public EventSetDescriptor(String eventSetName, Class listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod)
Creates an EventSetDescriptor from scratch using java.lang.reflect.Method and java.lang.Class objects.

param
eventSetName The programmatic name of the event set.
param
listenerType The Class for the listener interface.
param
listenerMethods An array of Method objects describing each of the event handling methods in the target listener.
param
addListenerMethod The method on the event source that can be used to register an event listener object.
param
removeListenerMethod The method on the event source that can be used to de-register an event listener object.
exception
IntrospectionException if an exception occurs during introspection.

	this(eventSetName, listenerType, listenerMethods,
	     addListenerMethod, removeListenerMethod, null);
    
public EventSetDescriptor(String eventSetName, Class listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod, Method getListenerMethod)
This constructor creates an EventSetDescriptor from scratch using java.lang.reflect.Method and java.lang.Class objects.

param
eventSetName The programmatic name of the event set.
param
listenerType The Class for the listener interface.
param
listenerMethods An array of Method objects describing each of the event handling methods in the target listener.
param
addListenerMethod The method on the event source that can be used to register an event listener object.
param
removeListenerMethod The method on the event source that can be used to de-register an event listener object.
param
getListenerMethod The method on the event source that can be used to access the array of event listener objects.
exception
IntrospectionException if an exception occurs during introspection.
since
1.4

	setName(eventSetName);
	setListenerMethods(listenerMethods);
	setAddListenerMethod(addListenerMethod);
	setRemoveListenerMethod( removeListenerMethod);
	setGetListenerMethod(getListenerMethod);
	setListenerType(listenerType);
    
public EventSetDescriptor(String eventSetName, Class listenerType, MethodDescriptor[] listenerMethodDescriptors, Method addListenerMethod, Method removeListenerMethod)
Creates an EventSetDescriptor from scratch using java.lang.reflect.MethodDescriptor and java.lang.Class objects.

param
eventSetName The programmatic name of the event set.
param
listenerType The Class for the listener interface.
param
listenerMethodDescriptors An array of MethodDescriptor objects describing each of the event handling methods in the target listener.
param
addListenerMethod The method on the event source that can be used to register an event listener object.
param
removeListenerMethod The method on the event source that can be used to de-register an event listener object.
exception
IntrospectionException if an exception occurs during introspection.

	setName(eventSetName);
	this.listenerMethodDescriptors = listenerMethodDescriptors;
	setAddListenerMethod(addListenerMethod);
	setRemoveListenerMethod(removeListenerMethod);
	setListenerType(listenerType);
    
Methods Summary
public synchronized java.lang.reflect.MethodgetAddListenerMethod()
Gets the method used to add event listeners.

return
The method used to register a listener at the event source.

        return (addMethodDescriptor != null ?
                    addMethodDescriptor.getMethod() : null);
    
public synchronized java.lang.reflect.MethodgetGetListenerMethod()
Gets the method used to access the registered event listeners.

return
The method used to access the array of listeners at the event source or null if it doesn't exist.
since
1.4

        return (getMethodDescriptor != null ?
                    getMethodDescriptor.getMethod() : null);
    
private static java.lang.StringgetListenerClassName(java.lang.Class cls)

	String className = cls.getName(); 
	return className.substring(className.lastIndexOf('.") + 1); 
    
public synchronized java.beans.MethodDescriptor[]getListenerMethodDescriptors()
Gets the MethodDescriptors of the target listener interface.

return
An array of MethodDescriptor objects for the target methods within the target listener interface that will get called when events are fired.

	return listenerMethodDescriptors;
    
public synchronized java.lang.reflect.Method[]getListenerMethods()
Gets the methods of the target listener interface.

return
An array of Method objects for the target methods within the target listener interface that will get called when events are fired.

	Method[] methods = getListenerMethods0();
	if (methods == null) {
            if (listenerMethodDescriptors != null) {
                methods = new Method[listenerMethodDescriptors.length];
		for (int i = 0; i < methods.length; i++) {
                    methods[i] = listenerMethodDescriptors[i].getMethod();
		}
	    }
	    setListenerMethods(methods);
	}
	return methods;
    
private java.lang.reflect.Method[]getListenerMethods0()

	return (Method[])getObject(listenerMethodsRef);
    
public java.lang.ClassgetListenerType()
Gets the Class object for the target interface.

return
The Class object for the target interface that will get invoked when the event is fired.

	return (Class)getObject(listenerTypeRef);
    
private static java.lang.reflect.MethodgetMethod(java.lang.Class cls, java.lang.String name, int args)

	if (name == null) {
	    return null;
	}
	Method method = Introspector.findMethod(cls, name, args);
	if (method == null) {
	    throw new IntrospectionException("Method not found: " + name + 
					     " on class " + cls.getName());
	}
	return method;
    
public synchronized java.lang.reflect.MethodgetRemoveListenerMethod()
Gets the method used to remove event listeners.

return
The method used to remove a listener at the event source.

        return (removeMethodDescriptor != null ?
                    removeMethodDescriptor.getMethod() : null);
    
public booleanisInDefaultEventSet()
Reports if an event set is in the "default" set.

return
true if the event set is in the "default" set. Defaults to true.

	return inDefaultEventSet;
    
public booleanisUnicast()
Normally event sources are multicast. However there are some exceptions that are strictly unicast.

return
true if the event set is unicast. Defaults to false.

	return unicast;
    
private synchronized voidsetAddListenerMethod(java.lang.reflect.Method method)

	if (method == null) {
	    return;
	}
	if (getClass0() == null) {
	    setClass0(method.getDeclaringClass());
	}
        addMethodDescriptor = new MethodDescriptor(method);
    
private synchronized voidsetGetListenerMethod(java.lang.reflect.Method method)

	if (method == null) {
	    return;
	}
	if (getClass0() == null) {
	    setClass0(method.getDeclaringClass());
	}
        getMethodDescriptor = new MethodDescriptor(method);
    
public voidsetInDefaultEventSet(boolean inDefaultEventSet)
Marks an event set as being in the "default" set (or not). By default this is true.

param
inDefaultEventSet true if the event set is in the "default" set, false if not

	this.inDefaultEventSet = inDefaultEventSet;
    
private voidsetListenerMethods(java.lang.reflect.Method[] methods)

	if (methods == null) {
	    return;
	}
        if (listenerMethodDescriptors == null) {
            listenerMethodDescriptors = new MethodDescriptor[methods.length];
	    for (int i = 0; i < methods.length; i++) {
                listenerMethodDescriptors[i] = new MethodDescriptor(methods[i]);
	    }
	}
	listenerMethodsRef = createReference(methods, true);
    
private voidsetListenerType(java.lang.Class cls)

	listenerTypeRef = createReference(cls);
    
private synchronized voidsetRemoveListenerMethod(java.lang.reflect.Method method)

	if (method == null) {
	    return;
	}
	if (getClass0() == null) {
	    setClass0(method.getDeclaringClass());
	}
        removeMethodDescriptor = new MethodDescriptor(method);
    
public voidsetUnicast(boolean unicast)
Mark an event set as unicast (or not).

param
unicast True if the event set is unicast.

	this.unicast = unicast;