inputverifier.java.degredaded
来自「一个用java写的地震分析软件(无源码)-used to write a sei」· DEGREDADED 代码 · 共 19 行
DEGREDADED
19 行
package org.trinet.util.graphics;
/** This is a class that is added to JDK1.3 and is put here for compatiblity
* with v1.2.2*/
import javax.swing.*;
public class InputVerifier {
public InputVerifier() {}
public boolean verify(JComponent input) {
return true;
}
public boolean shouldYieldFocus(JComponent input) {
return verify(input);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?