KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITLibraryPlaylist


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

9 @IID("{53AE1704-491C-4289-94A0-958815675A3D}")
10 public interface IITLibraryPlaylist extends IITPlaylist {
11     /**
12      * Add the specified file path to the library.
13      */

14     @VTID(30)
15     IITOperationStatus addFile(
16         java.lang.String JavaDoc filePath);
17
18     /**
19      * Add the specified array of file paths to the library. filePaths can be of type VT_ARRAY|VT_VARIANT, where each entry is a VT_BSTR, or VT_ARRAY|VT_BSTR. You can also pass a JScript Array object.
20      */

21     @VTID(31)
22     IITOperationStatus addFiles(
23         java.lang.Object JavaDoc filePaths);
24
25     /**
26      * Add the specified streaming audio URL to the library.
27      */

28     @VTID(32)
29     IITURLTrack addURL(
30         java.lang.String JavaDoc uRL);
31
32     /**
33      * Add the specified track to the library. iTrackToAdd is a VARIANT of type VT_DISPATCH that points to an IITTrack.
34      */

35     @VTID(33)
36     IITTrack addTrack(
37         java.lang.Object JavaDoc iTrackToAdd);
38
39 }
40
Popular Tags