⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 visualiserpanelobserver.java

📁 无限传感器网络的模拟结果的图形查看环境
💻 JAVA
字号:
package iface;import java.awt.Graphics;import iface.VisualiserPanel;/**   This defines an interface that class that wish to paint on a panel of the   user-interface have to implement.   @author Christian Nentwich   @version 0.1*/public interface VisualiserPanelObserver {    /**       Attach a visualiser panel to this observer.       @param panel the panel to attach    */    public void attach(VisualiserPanel panel);    /**       This method must be overridden to draw the graphics.       @param g the AWT graphics context    */    public void paint(Graphics g);}

⌨️ 快捷键说明

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