KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITEncoderCollection


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

9 @IID("{8862BCA9-168D-4549-A9D5-ADB35E553BA6}")
10 public interface IITEncoderCollection extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     /**
12      * Returns the number of encoders in the collection.
13      */

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

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

27     @VTID(9)
28     IITEncoder 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