?? 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 + -