hfocusevent.java
来自「MHP java class for Interactive TV use」· Java 代码 · 共 30 行
JAVA
30 行
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 + =
减小字号Ctrl + -
显示快捷键?