KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > song > Song


1 package song;
2
3 // $Id: song.Song.java,v 1.2 2002/07/18 09:08:03 per_nyfelt Exp $
4

5
6
7 import org.ozoneDB.*;
8
9 /**
10  * The external interface of the database object song.Song
11  *
12  * @version $Revision: 1.2 $ $Date: 2002/07/18 09:08:03 $
13  * @author James Stiefel
14  */

15 public interface Song extends OzoneRemote {
16     /**
17      * Retrieves the object's unique (database) Handle
18      *
19      * @return the object handle
20      */

21     public String JavaDoc handle();
22
23     /**
24      * Sets the value of Title
25      *
26      * @param Title
27      */

28     public void setTitle (String JavaDoc Title); /*update*/
29
30     /**
31      * Retrieves the value of Title
32      *
33      * @return the value of Title
34      */

35     public String JavaDoc getTitle ();
36
37     /**
38      * Sets the value of Author
39      *
40      * @param Author
41      */

42     public void setAuthor (String JavaDoc Author); /*update*/
43
44     /**
45      * Retrieves the value of Author
46      *
47      * @return the value of Author
48      */

49     public String JavaDoc getAuthor ();
50
51     /**
52      * Sets the value of Copyright
53      *
54      * @param Copyright
55      */

56     public void setCopyright (String JavaDoc Copyright); /*update*/
57
58     /**
59      * Retrieves the value of Copyright
60      *
61      * @return the value of Copyright
62      */

63     public String JavaDoc getCopyright ();
64
65     /**
66      * Sets the value of Publisher
67      *
68      * @param Publisher
69      */

70     public void setPublisher (String JavaDoc Publisher); /*update*/
71
72     /**
73      * Retrieves the value of Publisher
74      *
75      * @return the value of Publisher
76      */

77     public String JavaDoc getPublisher ();
78
79 }
80
Popular Tags