EventListenerProxy抽象类
package java.util; //事件监听代理类,实现了EventListener接口 public abstract class EventListenerProxy<T extends EventListener> implements EventListener { private final T listener; /** * Creates a proxy for the specified listener. * * @param listener the listener object */ public EventListenerProxy(T listener) { this.listener = listener; } /** * Returns the listener associated with the proxy. * * @return the listener associated with the proxy */ public T getListener() { return this.listener; } }
Java之uitil包源码阅读 文章被收录于专栏
源码阅读是程序员必不可少的,本专栏记录本人阅读java源码笔记,与阅读此专栏的同道共同进步。 本专栏以字典序对源码进行阅读注释,主要工作:1.去除源码中冗长的英语注释,用简短的注释代替;2.对关键语句和算法予以说明。3.概要性描述。