searchlistener.java

来自「J[2]EE JavaJNDI jndi-1_1-ea2-demo」· Java 代码 · 共 37 行

JAVA
37
字号
/* * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * and its documentation for NON-COMMERCIAL purposes and without * fee is hereby granted provided that this copyright notice * appears in all copies. * * * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING * THIS SOFTWARE OR ITS DERIVATIVES. * * "@(#)SearchListener.java	1.1	99/05/06 SMI" */package examples.browser;import java.util.EventListener;import java.util.Hashtable;import javax.naming.NamingEnumeration;/** * This interface is for accepting notification when search results * are ready to be displayed. * * @author Rosanna Lee */interface SearchListener extends EventListener {    public void searchCompleted(NamingEnumeration res);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?