*/
public void setCompilation(boolean isCompilation) throws TrackReadOnly {
try {
this.itTrack.setCompilation(isCompilation);
} catch (TrackLockedException e) {
throw new TrackReadOnly(this);
} catch (TrackDeletedException e) {
throw new ITObjectDeletedError(this);
}
}