📄 hfocusevent.java
字号:
package org.havi.ui.event;
public class HFocusEvent extends java.awt.event.FocusEvent {
public static final int HFOCUS_FIRST = HTextEvent.TEXT_LAST + 1;
public static final int FOCUS_TRANSFER = HFOCUS_FIRST;
public static final int HFOCUS_LAST = HFOCUS_FIRST;
public static final int NO_TRANSFER_ID = -1;
private int transferId;
public HFocusEvent(java.awt.Component source, int id) {
super(source, id);
}
public HFocusEvent(java.awt.Component source, int id, int transfer) {
super(source, id);
}
public boolean isTemporary() {
return false;
}
public int getTransferId() {
return this.transferId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -