KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITSource


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

9 @IID("{AEC1C4D3-AEF1-4255-B892-3E3D13ADFDF9}")
10 public interface IITSource extends IITObject {
11     /**
12      * The source kind.
13      */

14     @VTID(15)
15     ITSourceKind kind();
16
17     /**
18      * The total size of the source, if it has a fixed size.
19      */

20     @VTID(16)
21     double capacity();
22
23     /**
24      * The free space on the source, if it has a fixed size.
25      */

26     @VTID(17)
27     double freeSpace();
28
29     /**
30      * Returns a collection of playlists.
31      */

32     @VTID(18)
33     IITPlaylistCollection playlists();
34
35 }
36
Popular Tags