clientlistener.java

来自「Sun公司官方网站上下载的JDK文档」· Java 代码 · 共 19 行

JAVA
19
字号
/* * @(#)file      ClientListener.java * @(#)author    Sun Microsystems, Inc. * @(#)version   1.1 * @(#)lastedit  04/01/12 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */import javax.management.Notification;import javax.management.NotificationListener;public class ClientListener implements NotificationListener {    public void handleNotification(Notification notification, Object handback) {	System.out.println("\nReceived notification: " + notification);    }}

⌨️ 快捷键说明

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