📄 debug15_5editor.java
字号:
package questions.c15;
import java.beans.*;
public class Debug15_5Editor
extends PropertyEditorSupport {
public String[] getTags() {
return new String[] { "sharp", "rounded" };
}
public String getJavaInitializationString() {
switch( ( (Number) getValue() ).intValue() ) {
default:
case Debug15_5.SHARP:
return "questions.c15.Debug15_5.SHARP";
case Debug15_5.ROUNDED:
return "questions.c15.Debug15_5.ROUNDED";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -