usereventrepository.java

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

JAVA
59
字号

package org.dvb.event;


public class UserEventRepository extends RepositoryDescriptor {

	private UserEvent[] userEvent;


	public UserEventRepository(java.lang.String name) {
	}


	public void addUserEvent( UserEvent event) {
	}


	public UserEvent[] getUserEvent() {
		return this.userEvent;
	}


	public void removeUserEvent( UserEvent event) {
	}


	public void addKey(int keycode) {
	}


	public void removeKey(int keycode) {
	}


	public void addAllNumericKeys() {
	}


	public void addAllColourKeys() {
	}


	public void addAllArrowKeys() {
	}


	public void removeAllNumericKeys() {
	}


	public void removeAllColourKeys() {
	}


	public void removeAllArrowKeys() {
	}

}

⌨️ 快捷键说明

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