practical quiz 8.vhs.java

来自「son los ejercicios de ssd3 espero que le」· Java 代码 · 共 24 行

JAVA
24
字号
/**
 * This interface declares the methods for obtaining VHS tape information.
 * 
 * @author Neil
 * @version 1.0.0
 */
public interface VHS {

	/**
	 * Returns the format of the VHS tape.
	 * 
	 * @return Returns the format of the VHS tape.
	 */
	String getFormat();

	/**
	 * Returns the language of the VHS tape.
	 * 
	 * @return Returns the language of the VHS tape.
	 */
	String getLanguage();

}

⌨️ 快捷键说明

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