KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITSourceCollection


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

9 @IID("{2FF6CE20-FF87-4183-B0B3-F323D047AF41}")
10 public interface IITSourceCollection extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     /**
12      * Returns the number of sources in the collection.
13      */

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

20     @VTID(8)
21     IITSource item(
22         int index);
23
24     /**
25      * Returns an IITSource object with the specified name.
26      */

27     @VTID(9)
28     IITSource itemByName(
29         java.lang.String JavaDoc name);
30
31     /**
32      * Returns an IEnumVARIANT object which can enumerate the collection.
33      */

34     @VTID(10)
35     java.util.Iterator JavaDoc<Com4jObject> iterator();
36
37 }
38
Popular Tags