stopevent.java
来自「无限传感器网络的模拟结果的图形查看环境」· Java 代码 · 共 32 行
JAVA
32 行
package fileio.event;
import fileio.event.Event;
import animation.VisualElement;
import util.Colour;
import util.Input;
import util.Debug;
import java.io.Reader;
import java.io.IOException;
/**
This class is used when the user has put stop events in the trace file.
It does nothing other than know the time at which the halt in the animation
occurs.
@author Steven Vischer
@version 1.0
*/
public class StopEvent extends Event {
public StopEvent() {
}
public void read(Reader reader) {
}
public VisualElement returnElement() {
return null;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?