ar.com.da.swing.event
Annotation Type Listener


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Listener

Marks a public method as a listener method

Author:
Carlos Descalzi

Required Element Summary
 java.lang.Class<? extends java.util.EventListener> type
          The listener type to implement
 
Optional Element Summary
 java.lang.String event
          The event name, if it is not specified, the method is invoked on every event declared on the listener.
 

Element Detail

type

public abstract java.lang.Class<? extends java.util.EventListener> type
The listener type to implement

event

public abstract java.lang.String event
The event name, if it is not specified, the method is invoked on every event declared on the listener.

Default:
""


Copyright © 2006 null. All Rights Reserved.