656667686970717273
isPlaying.set(false); } public void setClipStartTime(float startTime) throws ValueOutOfBoundsException { if(startTime<0 || startTime>=endTime.get()) { throw new ValueOutOfBoundsException(); } this.startTime.set(startTime); }
727374757677787980
this.startTime.set(startTime); } public void setClipEndTime(float endTime) throws ValueOutOfBoundsException { if(endTime<=startTime.get() || endTime>length.get()) { throw new ValueOutOfBoundsException(); } this.endTime.set(endTime); }