hadjustmentevent.java
来自「MHP java class for Interactive TV use」· Java 代码 · 共 23 行
JAVA
23 行
package org.havi.ui.event;
public class HAdjustmentEvent extends java.awt.AWTEvent {
public static final int ADJUST_FIRST = RESERVED_ID_MAX + 1;
public static final int ADJUST_LAST = ADJUST_FIRST + 5;
public static final int ADJUST_START_CHANGE = ADJUST_FIRST;
public static final int ADJUST_LESS = ADJUST_FIRST + 1;
public static final int ADJUST_MORE = ADJUST_FIRST + 2;
public static final int ADJUST_PAGE_LESS = ADJUST_FIRST + 3;
public static final int ADJUST_PAGE_MORE = ADJUST_FIRST + 4;
public static final int ADJUST_END_CHANGE = ADJUST_FIRST + 5;
public HAdjustmentEvent(org.havi.ui.HAdjustmentInputPreferred source, int id) {
super(source, id);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?