Examples of CAOutOfBoundsException


Examples of com.apple.audio.util.CAOutOfBoundsException

/*     */
/*     */   public MIDIPacket getPacket(int paramInt)
/*     */   {
/* 165 */     if (this.readOnly) {
/* 166 */       if (paramInt >= this.numPacketsForReadOnly)
/* 167 */         throw new CAOutOfBoundsException("Can't Read past the number of packets in this list");
/* 168 */       return this.cachedMIDIPacketArray[paramInt];
/*     */     }
/* 170 */     int i = numPackets();
/* 171 */     if (paramInt >= i) {
/* 172 */       throw new CAOutOfBoundsException("Can't Read past the number of packets in this list");
/*     */     }
/*     */
/* 175 */     int j = 4;
/* 176 */     int k = 0;
/* 177 */     for (int m = 0; m < paramInt; m++) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.