KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITAudioCDPlaylist


1 // GENERATED. DO NOT MODIFY
2
package iTunes.def;
3
4 import com4j.*;
5
6 /**
7  * IITAudioCDPlaylist Interface
8  */

9 @IID("{CF496DF3-0FED-4D7D-9BD8-529B6E8A082E}")
10 public interface IITAudioCDPlaylist extends IITPlaylist {
11     /**
12      * The artist of the CD.
13      */

14     @VTID(30)
15     java.lang.String JavaDoc artist();
16
17     /**
18      * True if this CD is a compilation album.
19      */

20     @VTID(31)
21     boolean compilation();
22
23     /**
24      * The composer of the CD.
25      */

26     @VTID(32)
27     java.lang.String JavaDoc composer();
28
29     /**
30      * The total number of discs in this CD's album.
31      */

32     @VTID(33)
33     int discCount();
34
35     /**
36      * The index of the CD disc in the source album.
37      */

38     @VTID(34)
39     int discNumber();
40
41     /**
42      * The genre of the CD.
43      */

44     @VTID(35)
45     java.lang.String JavaDoc genre();
46
47     /**
48      * The year the album was recorded/released.
49      */

50     @VTID(36)
51     int year();
52
53 }
54
Popular Tags