servicedomain.java
来自「MHP java class for Interactive TV use」· Java 代码 · 共 65 行
JAVA
65 行
package org.dvb.dsmcc;
public class ServiceDomain extends java.lang.Object {
private byte[] nSAPAddress;
private DSMCCObject mountPoint;
private org.davic.net.Locator locator;
public ServiceDomain() {
}
public void attach(org.davic.net.Locator aDVBService, int aCarouselId) throws ServiceXFRException, java.io.InterruptedIOException, MPEGDeliveryException {
}
public void attach(org.davic.net.Locator l) throws DSMCCException, java.io.InterruptedIOException, MPEGDeliveryException {
}
public void attach(byte[] NSAPAddress) throws DSMCCException, java.io.InterruptedIOException, InvalidAddressException, MPEGDeliveryException {
}
public void detach() throws NotLoadedException {
}
public byte[] getNSAPAddress() throws NotLoadedException {
return this.nSAPAddress;
}
public static java.net.URL getURL(org.davic.net.Locator l) throws NotLoadedException, javax.tv.locator.InvalidLocatorException, java.io.FileNotFoundException {
return null;
}
public DSMCCObject getMountPoint() {
return this.mountPoint;
}
public boolean isNetworkConnectionAvailable() {
return false;
}
public boolean isAttached() {
return false;
}
public org.davic.net.Locator getLocator() {
return this.locator;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?