KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITObject


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

9 @IID("{9FAB0E27-70D7-4E3A-9965-B0C8B8869BB6}")
10 public interface IITObject extends Com4jObject {
11     /**
12      * Returns the four IDs that uniquely identify this object.
13      */

14     @VTID(7)
15     void getITObjectIDs(
16         Holder<Integer JavaDoc> sourceID,
17         Holder<Integer JavaDoc> playlistID,
18         Holder<Integer JavaDoc> trackID,
19         Holder<Integer JavaDoc> databaseID);
20
21     /**
22      * The name of the object.
23      */

24     @VTID(8)
25     java.lang.String JavaDoc name();
26
27     /**
28      * The name of the object.
29      */

30     @VTID(9)
31     void name(
32         java.lang.String JavaDoc name);
33
34     /**
35      * The index of the object in internal application order (1-based).
36      */

37     @VTID(10)
38     int index();
39
40     /**
41      * The source ID of the object.
42      */

43     @VTID(11)
44     int sourceID();
45
46     /**
47      * The playlist ID of the object.
48      */

49     @VTID(12)
50     int playlistID();
51
52     /**
53      * The track ID of the object.
54      */

55     @VTID(13)
56     int trackID();
57
58     /**
59      * The track database ID of the object.
60      */

61     @VTID(14)
62     int trackDatabaseID();
63
64 }
65
Popular Tags