* @throws JitcaException
* if an error occurs.
*/
public ArtworkImpl add(File file) throws JitcaException {
IITArtwork itArtwork = this.track.getITTrack().addArtworkFromFile(file);
ArtworkImpl newArtwork = new ArtworkImpl(itArtwork, this.track);
this.artworks.add(newArtwork);
return newArtwork;
}