dvblocator.java

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

JAVA
95
字号

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 + =
减小字号Ctrl + -
显示快捷键?