KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITArtwork


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

9 @IID("{D0A6C1F8-BF3D-4CD8-AC47-FE32BDD17257}")
10 public interface IITArtwork extends Com4jObject {
11     /**
12      * Delete this piece of artwork from the track.
13      */

14     @VTID(7)
15     void delete();
16
17     /**
18      * Replace existing artwork data with new artwork from an image file.
19      */

20     @VTID(8)
21     void setArtworkFromFile(
22         java.lang.String JavaDoc filePath);
23
24     /**
25      * Save artwork data to an image file.
26      */

27     @VTID(9)
28     void saveArtworkToFile(
29         java.lang.String JavaDoc filePath);
30
31     /**
32      * The format of the artwork.
33      */

34     @VTID(10)
35     ITArtworkFormat format();
36
37 }
38
Popular Tags