hscreen.java
来自「MHP java class for Interactive TV use」· Java 代码 · 共 87 行
JAVA
87 行
package org.havi.ui;
public class HScreen extends java.lang.Object {
private static HScreen[] hScreens;
private static HScreen defaultHScreen;
private HVideoDevice[] hVideoDevices;
private HVideoDevice defaultHVideoDevice;
private HGraphicsDevice[] hGraphicsDevices;
private HGraphicsDevice defaultHGraphicsDevice;
private HBackgroundDevice[] hBackgroundDevices;
private HBackgroundDevice defaultHBackgroundDevice;
public static HScreen[] getHScreens() {
return hScreens;
}
public static HScreen getDefaultHScreen() {
return defaultHScreen;
}
public HVideoDevice[] getHVideoDevices() {
return this.hVideoDevices;
}
public HVideoDevice getDefaultHVideoDevice() {
return this.defaultHVideoDevice;
}
public HVideoConfiguration getBestConfiguration( HVideoConfigTemplate[] hvcta) {
return null;
}
public HGraphicsDevice[] getHGraphicsDevices() {
return this.hGraphicsDevices;
}
public HGraphicsDevice getDefaultHGraphicsDevice() {
return this.defaultHGraphicsDevice;
}
public HGraphicsConfiguration getBestConfiguration( HGraphicsConfigTemplate[] hgcta) {
return null;
}
public HBackgroundDevice[] getHBackgroundDevices() {
return this.hBackgroundDevices;
}
public HBackgroundDevice getDefaultHBackgroundDevice() {
return this.defaultHBackgroundDevice;
}
public HBackgroundConfiguration getBestConfiguration( HBackgroundConfigTemplate[] hbcta) {
return null;
}
public HScreenConfiguration[] getCoherentScreenConfigurations( HScreenConfigTemplate[] hscta) {
return null;
}
public boolean setCoherentScreenConfigurations( HScreenConfiguration[] hsca) throws java.lang.SecurityException, HPermissionDeniedException, HConfigurationException {
return false;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?