📄 section.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -