?? practical quiz 8.dvd.java
字號:
/**
* This interface declares the methods for obtaining DVD information.
*
* @author Neil
* @version 1.0.0
*/
public interface DVD {
/**
* Returns the region code of the DVD.
*
* @return Returns the region code of the DVD.
*/
int getRegionCode();
/**
* Returns an array with the names of the audio tracks on the DVD.
*
* @return Returns an array with the names of the audio tracks on the DVD.
*/
String[] getAudioTracks();
/**
* Returns an array with the languages of the subtitles on the DVD.
*
* @return Returns an array with the languages of the subtitles on the DVD.
*/
String[] getSubtitles();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -