📄 dummyclass.java
字号:
package piytest.dummy;
import piy.UserComponent;
/**
* Represents a general object implementing UserComponent but not a component in the Java sense
* - not used by PIY, only used for testing purposes.
* @author David Vivash
* @version 1.0, 22/11/00
*/
public class DummyClass implements UserComponent
{
public DummyClass() {
}
public void setText(String text) {
//nothing
}
public String getText() {
return "nothing";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -