📄 dvblocator.java
字号:
package org.davic.net.dvb;
public class DvbLocator extends org.davic.net.Locator {
private int originalNetworkId;
private int transportStreamId;
private int serviceId;
private int[] componentTags;
private int eventId;
private java.lang.String filePath;
private java.lang.String textualServiceIdentifier;
public DvbLocator(java.lang.String url) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid, int serviceid) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid, int serviceid, int eventid) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid, int serviceid, int eventid, int componenttag) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid, int serviceid, int eventid, int[] componenttags) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public DvbLocator(int onid, int tsid, int serviceid, int eventid, int[] componenttags, java.lang.String filePath) throws org.davic.net.InvalidLocatorException {
super("foo");
}
public int getOriginalNetworkId() {
return this.originalNetworkId;
}
public int getTransportStreamId() {
return this.transportStreamId;
}
public int getServiceId() {
return this.serviceId;
}
public int[] getComponentTags() {
return this.componentTags;
}
public int getEventId() {
return this.eventId;
}
public java.lang.String getFilePath() {
return this.filePath;
}
public java.lang.String getTextualServiceIdentifier() {
return this.textualServiceIdentifier;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -