*/
public void setFile(File newFile) throws TrackReadOnly, JitcaFileNotFoundException {
try {
this.itTrack.setLocation(newFile);
} catch (TrackLockedException e) {
throw new TrackReadOnly(this);
} catch (TrackDeletedException e) {
throw new ITObjectDeletedError(this);
}
this.refresh();
}