KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITArtworkCollection


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

9 @IID("{BF2742D7-418C-4858-9AF9-2981B062D23E}")
10 public interface IITArtworkCollection extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     /**
12      * Returns the number of pieces of artwork in the collection.
13      */

14     @VTID(7)
15     int count();
16
17     /**
18      * Returns an IITArtwork object corresponding to the given index (1-based).
19      */

20     @VTID(8)
21     IITArtwork item(
22         int index);
23
24     /**
25      * Returns an IEnumVARIANT object which can enumerate the collection.
26      */

27     @VTID(9)
28     java.util.Iterator JavaDoc<Com4jObject> iterator();
29
30 }
31
Popular Tags