KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITConvertOperationStatus


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

9 @IID("{7063AAF6-ABA0-493B-B4FC-920A9F105875}")
10 public interface IITConvertOperationStatus extends IITOperationStatus {
11     /**
12      * Returns the current conversion status.
13      */

14     @VTID(9)
15     void getConversionStatus(
16         Holder<java.lang.String JavaDoc> trackName,
17         Holder<Integer JavaDoc> progressValue,
18         Holder<Integer JavaDoc> maxProgressValue);
19
20     /**
21      * Stops the current conversion operation.
22      */

23     @VTID(10)
24     void stopConversion();
25
26     /**
27      * Returns the name of the track currently being converted.
28      */

29     @VTID(11)
30     java.lang.String JavaDoc trackName();
31
32     /**
33      * Returns the current progress value for the track being converted.
34      */

35     @VTID(12)
36     int progressValue();
37
38     /**
39      * Returns the maximum progress value for the track being converted.
40      */

41     @VTID(13)
42     int maxProgressValue();
43
44 }
45
Popular Tags