📄 observer.java
字号:
package org.xmlBlaster.engine.admin.extern.snmp;/** * The Observer interface lists the methods that an Observer must implement * so that a Subject can send an update notification to the Observer. * @version @VERSION@ * @author Udo Thalmann */public interface Observer { /** * update must be implemented by a concrete observer. * @param Subject o: sends an update notification to the observer. */ public void update( Subject o );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -