/* */ }
/* */
/* */ public void addFlipSpec(EndianFlipSpec paramEndianFlipSpec)
/* */ {
/* 102 */ if (this.flag != 0) {
/* 103 */ throw new QTRuntimeException("Can't specify endian flip with " + this.flag + " format flag");
/* */ }
/* 105 */ if (this.vec == null) {
/* 106 */ this.vec = new Vector();
/* */ }
/* 108 */ for (int i = 0; i < this.vec.size(); i++) {
/* 109 */ EndianFlipSpec localEndianFlipSpec = (EndianFlipSpec)this.vec.elementAt(i);
/* 110 */ if (paramEndianFlipSpec.offset == localEndianFlipSpec.offset)
/* 111 */ throw new QTRuntimeException("Each offset must be unique");
/* 112 */ if (paramEndianFlipSpec.offset < localEndianFlipSpec.offset) {
/* 113 */ this.vec.insertElementAt(paramEndianFlipSpec, i);
/* 114 */ return;
/* */ }
/* */ }