song.java
来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 80 行
JAVA
80 行
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 + =
减小字号Ctrl + -
显示快捷键?