📄 visualiserpanelobserver.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 + -