⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 practical quiz 8.dvd.java

📁 CMU SSD3 课程完整答案(除EXAM)
💻 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();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -