hrangevalue.java

来自「MHP java class for Interactive TV use」· Java 代码 · 共 148 行

JAVA
148
字号

package org.havi.ui;


public class HRangeValue extends HRange implements HAdjustmentValue {

	private static HRangeLook defaultlook;
	private HSound gainFocusSound;
	private HSound loseFocusSound;
	private int[] navigationKeys;
	private int unitIncrement;
	private int blockIncrement;
	private HSound adjustmentSound;
	private boolean adjustMode;


	public HRangeValue() {
	}


	public HRangeValue(int orientation, int minimum, int maximum, int value, int x, int y, int width, int height) {
	}


	public HRangeValue(int orientation, int minimum, int maximum, int value) {
	}


	public static void setDefaultLook( HRangeLook look) {
		defaultlook = look;
	}


	public static HRangeLook getDefaultLook() {
		return defaultlook;
	}


	public void setMove(int keyCode, HNavigable target) {
	}


	public HNavigable getMove(int keyCode) {
		return null;

	}


	public void setFocusTraversal( HNavigable up, HNavigable down, HNavigable left, HNavigable right) {
	}


	public boolean isSelected() {
		return false;

	}


	public void setGainFocusSound( HSound sound) {
		this.gainFocusSound = sound;
	}


	public void setLoseFocusSound( HSound sound) {
		this.loseFocusSound = sound;
	}


	public HSound getGainFocusSound() {
		return this.gainFocusSound;
	}


	public HSound getLoseFocusSound() {
		return this.loseFocusSound;
	}


	public void addHFocusListener(org.havi.ui.event.HFocusListener l) {
	}


	public void removeHFocusListener(org.havi.ui.event.HFocusListener l) {
	}


	public int[] getNavigationKeys() {
		return this.navigationKeys;
	}


	public void processHFocusEvent(org.havi.ui.event.HFocusEvent evt) {
	}


	public void setUnitIncrement(int increment) {
		this.unitIncrement = increment;
	}


	public int getUnitIncrement() {
		return this.unitIncrement;
	}


	public void setBlockIncrement(int increment) {
		this.blockIncrement = increment;
	}


	public int getBlockIncrement() {
		return this.blockIncrement;
	}


	public void addAdjustmentListener(org.havi.ui.event.HAdjustmentListener l) {
	}


	public void removeAdjustmentListener(org.havi.ui.event.HAdjustmentListener l) {
	}


	public void setAdjustmentSound( HSound sound) {
		this.adjustmentSound = sound;
	}


	public HSound getAdjustmentSound() {
		return this.adjustmentSound;
	}


	public boolean getAdjustMode() {
		return this.adjustMode;
	}


	public void setAdjustMode(boolean adjust) {
		this.adjustMode = adjust;
	}


	public void processHAdjustmentEvent(org.havi.ui.event.HAdjustmentEvent evt) {
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?