elcontextlistener.java
来自「java属性邦定的(JSR-295)的一个实现」· Java 代码 · 共 26 行
JAVA
26 行
/*
* Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*/
package org.jdesktop.el;
/**
* The listener interface for receiving notification when an
* {@link ELContext} is created.
*
* @see ELContext
* @see ELContextEvent
* @since JSP 2.1
*/
public interface ELContextListener extends java.util.EventListener {
/**
* Invoked when a new <code>ELContext</code> has been created.
*
* @param ece the notification event.
*/
public void contextCreated(ELContextEvent ece);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?