section.java
来自「MHP java class for Interactive TV use」· Java 代码 · 共 97 行
JAVA
97 行
package org.davic.mpeg.sections;
public class Section extends java.lang.Object implements java.lang.Cloneable {
private byte[] data;
private boolean fullStatus;
public byte[] getData() throws NoDataAvailableException {
return this.data;
}
public byte[] getData(int index, int length) throws NoDataAvailableException, java.lang.IndexOutOfBoundsException {
return this.data;
}
public byte getByteAt(int index) throws NoDataAvailableException, java.lang.IndexOutOfBoundsException {
return (byte)0;
}
public int table_id() throws NoDataAvailableException {
return 0;
}
public boolean section_syntax_indicator() throws NoDataAvailableException {
return false;
}
public boolean private_indicator() throws NoDataAvailableException {
return false;
}
public int section_length() throws NoDataAvailableException {
return 0;
}
public int table_id_extension() throws NoDataAvailableException {
return 0;
}
public short version_number() throws NoDataAvailableException {
return 0;
}
public boolean current_next_indicator() throws NoDataAvailableException {
return false;
}
public int section_number() throws NoDataAvailableException {
return 0;
}
public int last_section_number() throws NoDataAvailableException {
return 0;
}
public boolean getFullStatus() {
return this.fullStatus;
}
public void setEmpty() {
}
public java.lang.Object clone() {
return null;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?