📄 song.java
字号:
package song;// $Id: song.Song.java,v 1.2 2002/07/18 09:08:03 per_nyfelt Exp $import org.ozoneDB.*;/** * The external interface of the database object song.Song * * @version $Revision: 1.2 $ $Date: 2002/07/18 09:08:03 $ * @author James Stiefel */public interface Song extends OzoneRemote { /** * Retrieves the object's unique (database) Handle * * @return the object handle */ public String handle(); /** * Sets the value of Title * * @param Title */ public void setTitle (String Title); /*update*/ /** * Retrieves the value of Title * * @return the value of Title */ public String getTitle (); /** * Sets the value of Author * * @param Author */ public void setAuthor (String Author); /*update*/ /** * Retrieves the value of Author * * @return the value of Author */ public String getAuthor (); /** * Sets the value of Copyright * * @param Copyright */ public void setCopyright (String Copyright); /*update*/ /** * Retrieves the value of Copyright * * @return the value of Copyright */ public String getCopyright (); /** * Sets the value of Publisher * * @param Publisher */ public void setPublisher (String Publisher); /*update*/ /** * Retrieves the value of Publisher * * @return the value of Publisher */ public String getPublisher ();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -