File: RangeType.java

package info (click to toggle)
libvamsas-client-java 0.2~git2011.10.17%2B1b42648-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 4,108 kB
  • ctags: 5,456
  • sloc: java: 32,555; xml: 417; sh: 47; makefile: 6
file content (600 lines) | stat: -rw-r--r-- 18,310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
/*
 * This file is part of the Vamsas Client version 0.2. 
 * Copyright 2010 by Jim Procter, Iain Milne, Pierre Marguerite, 
 *  Andrew Waterhouse and Dominik Lindner.
 * 
 * Earlier versions have also been incorporated into Jalview version 2.4 
 * since 2008, and TOPALi version 2 since 2007.
 * 
 * The Vamsas Client is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *  
 * The Vamsas Client is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with the Vamsas Client.  If not, see <http://www.gnu.org/licenses/>.
 */
package uk.ac.vamsas.objects.core;

/**
 * Specify an ordered set of positions and/or regions on the principle dimension
 * of some associated vamsas object Keeping to jaxb-1.0 specification for the
 * moment - this choice should become a substitution group when we use jaxb-2.0
 * capable bindings
 * 
 * 
 * @version $Revision$ $Date$
 */
public abstract class RangeType extends uk.ac.vamsas.client.Vobject implements
    java.io.Serializable {

  // --------------------------/
  // - Class/Member Variables -/
  // --------------------------/

  /**
   * Internal choice value storage
   */
  private java.lang.Object _choiceValue;

  /**
   * a position within the associated object's coordinate system
   * 
   */
  private java.util.Vector _posList;

  /**
   * a region from start to end, with flag for inclusivity of terminii
   */
  private java.util.Vector _segList;

  // ----------------/
  // - Constructors -/
  // ----------------/

  public RangeType() {
    super();
    this._posList = new java.util.Vector();
    this._segList = new java.util.Vector();
  }

  // -----------/
  // - Methods -/
  // -----------/

  /**
   * 
   * 
   * @param vPos
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void addPos(final uk.ac.vamsas.objects.core.Pos vPos)
      throws java.lang.IndexOutOfBoundsException {
    this._posList.addElement(vPos);
  }

  /**
   * 
   * 
   * @param index
   * @param vPos
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void addPos(final int index, final uk.ac.vamsas.objects.core.Pos vPos)
      throws java.lang.IndexOutOfBoundsException {
    this._posList.add(index, vPos);
  }

  /**
   * 
   * 
   * @param vSeg
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void addSeg(final uk.ac.vamsas.objects.core.Seg vSeg)
      throws java.lang.IndexOutOfBoundsException {
    this._segList.addElement(vSeg);
  }

  /**
   * 
   * 
   * @param index
   * @param vSeg
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void addSeg(final int index, final uk.ac.vamsas.objects.core.Seg vSeg)
      throws java.lang.IndexOutOfBoundsException {
    this._segList.add(index, vSeg);
  }

  /**
   * Method enumeratePos.
   * 
   * @return an Enumeration over all uk.ac.vamsas.objects.core.Pos elements
   */
  public java.util.Enumeration enumeratePos() {
    return this._posList.elements();
  }

  /**
   * Method enumerateSeg.
   * 
   * @return an Enumeration over all uk.ac.vamsas.objects.core.Seg elements
   */
  public java.util.Enumeration enumerateSeg() {
    return this._segList.elements();
  }

  /**
   * Overrides the java.lang.Object.equals method.
   * 
   * @param obj
   * @return true if the objects are equal.
   */
  public boolean equals(final java.lang.Object obj) {
    if (this == obj)
      return true;

    if (super.equals(obj) == false)
      return false;

    if (obj instanceof RangeType) {

      RangeType temp = (RangeType) obj;
      boolean thcycle;
      boolean tmcycle;
      if (this._choiceValue != null) {
        if (temp._choiceValue == null)
          return false;
        if (this._choiceValue != temp._choiceValue) {
          thcycle = org.castor.core.util.CycleBreaker
              .startingToCycle(this._choiceValue);
          tmcycle = org.castor.core.util.CycleBreaker
              .startingToCycle(temp._choiceValue);
          if (thcycle != tmcycle) {
            if (!thcycle) {
              org.castor.core.util.CycleBreaker
                  .releaseCycleHandle(this._choiceValue);
            }
            ;
            if (!tmcycle) {
              org.castor.core.util.CycleBreaker
                  .releaseCycleHandle(temp._choiceValue);
            }
            ;
            return false;
          }
          if (!thcycle) {
            if (!this._choiceValue.equals(temp._choiceValue)) {
              org.castor.core.util.CycleBreaker
                  .releaseCycleHandle(this._choiceValue);
              org.castor.core.util.CycleBreaker
                  .releaseCycleHandle(temp._choiceValue);
              return false;
            }
            org.castor.core.util.CycleBreaker.releaseCycleHandle(this._choiceValue);
            org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._choiceValue);
          }
        }
      } else if (temp._choiceValue != null)
        return false;
      if (this._posList != null) {
        if (temp._posList == null)
          return false;
        if (this._posList != temp._posList) {
          thcycle = org.castor.core.util.CycleBreaker.startingToCycle(this._posList);
          tmcycle = org.castor.core.util.CycleBreaker.startingToCycle(temp._posList);
          if (thcycle != tmcycle) {
            if (!thcycle) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(this._posList);
            }
            ;
            if (!tmcycle) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._posList);
            }
            ;
            return false;
          }
          if (!thcycle) {
            if (!this._posList.equals(temp._posList)) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(this._posList);
              org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._posList);
              return false;
            }
            org.castor.core.util.CycleBreaker.releaseCycleHandle(this._posList);
            org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._posList);
          }
        }
      } else if (temp._posList != null)
        return false;
      if (this._segList != null) {
        if (temp._segList == null)
          return false;
        if (this._segList != temp._segList) {
          thcycle = org.castor.core.util.CycleBreaker.startingToCycle(this._segList);
          tmcycle = org.castor.core.util.CycleBreaker.startingToCycle(temp._segList);
          if (thcycle != tmcycle) {
            if (!thcycle) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(this._segList);
            }
            ;
            if (!tmcycle) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._segList);
            }
            ;
            return false;
          }
          if (!thcycle) {
            if (!this._segList.equals(temp._segList)) {
              org.castor.core.util.CycleBreaker.releaseCycleHandle(this._segList);
              org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._segList);
              return false;
            }
            org.castor.core.util.CycleBreaker.releaseCycleHandle(this._segList);
            org.castor.core.util.CycleBreaker.releaseCycleHandle(temp._segList);
          }
        }
      } else if (temp._segList != null)
        return false;
      return true;
    }
    return false;
  }

  /**
   * Returns the value of field 'choiceValue'. The field 'choiceValue' has the
   * following description: Internal choice value storage
   * 
   * @return the value of field 'ChoiceValue'.
   */
  public java.lang.Object getChoiceValue() {
    return this._choiceValue;
  }

  /**
   * Method getPos.
   * 
   * @param index
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   * @return the value of the uk.ac.vamsas.objects.core.Pos at the given index
   */
  public uk.ac.vamsas.objects.core.Pos getPos(final int index)
      throws java.lang.IndexOutOfBoundsException {
    // check bounds for index
    if (index < 0 || index >= this._posList.size()) {
      throw new IndexOutOfBoundsException("getPos: Index value '" + index
          + "' not in range [0.." + (this._posList.size() - 1) + "]");
    }

    return (uk.ac.vamsas.objects.core.Pos) _posList.get(index);
  }

  /**
   * Method getPos.Returns the contents of the collection in an Array.
   * <p>
   * Note: Just in case the collection contents are changing in another thread,
   * we pass a 0-length Array of the correct type into the API call. This way we
   * <i>know</i> that the Array returned is of exactly the correct length.
   * 
   * @return this collection as an Array
   */
  public uk.ac.vamsas.objects.core.Pos[] getPos() {
    uk.ac.vamsas.objects.core.Pos[] array = new uk.ac.vamsas.objects.core.Pos[0];
    return (uk.ac.vamsas.objects.core.Pos[]) this._posList.toArray(array);
  }

  /**
   * Method getPosAsReference.Returns a reference to '_posList'. No type
   * checking is performed on any modifications to the Vector.
   * 
   * @return a reference to the Vector backing this class
   */
  public java.util.Vector getPosAsReference() {
    return this._posList;
  }

  /**
   * Method getPosCount.
   * 
   * @return the size of this collection
   */
  public int getPosCount() {
    return this._posList.size();
  }

  /**
   * Method getSeg.
   * 
   * @param index
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   * @return the value of the uk.ac.vamsas.objects.core.Seg at the given index
   */
  public uk.ac.vamsas.objects.core.Seg getSeg(final int index)
      throws java.lang.IndexOutOfBoundsException {
    // check bounds for index
    if (index < 0 || index >= this._segList.size()) {
      throw new IndexOutOfBoundsException("getSeg: Index value '" + index
          + "' not in range [0.." + (this._segList.size() - 1) + "]");
    }

    return (uk.ac.vamsas.objects.core.Seg) _segList.get(index);
  }

  /**
   * Method getSeg.Returns the contents of the collection in an Array.
   * <p>
   * Note: Just in case the collection contents are changing in another thread,
   * we pass a 0-length Array of the correct type into the API call. This way we
   * <i>know</i> that the Array returned is of exactly the correct length.
   * 
   * @return this collection as an Array
   */
  public uk.ac.vamsas.objects.core.Seg[] getSeg() {
    uk.ac.vamsas.objects.core.Seg[] array = new uk.ac.vamsas.objects.core.Seg[0];
    return (uk.ac.vamsas.objects.core.Seg[]) this._segList.toArray(array);
  }

  /**
   * Method getSegAsReference.Returns a reference to '_segList'. No type
   * checking is performed on any modifications to the Vector.
   * 
   * @return a reference to the Vector backing this class
   */
  public java.util.Vector getSegAsReference() {
    return this._segList;
  }

  /**
   * Method getSegCount.
   * 
   * @return the size of this collection
   */
  public int getSegCount() {
    return this._segList.size();
  }

  /**
   * Overrides the java.lang.Object.hashCode method.
   * <p>
   * The following steps came from <b>Effective Java Programming Language
   * Guide</b> by Joshua Bloch, Chapter 3
   * 
   * @return a hash code value for the object.
   */
  public int hashCode() {
    int result = super.hashCode();

    long tmp;
    if (_choiceValue != null
        && !org.castor.core.util.CycleBreaker.startingToCycle(_choiceValue)) {
      result = 37 * result + _choiceValue.hashCode();
      org.castor.core.util.CycleBreaker.releaseCycleHandle(_choiceValue);
    }
    if (_posList != null
        && !org.castor.core.util.CycleBreaker.startingToCycle(_posList)) {
      result = 37 * result + _posList.hashCode();
      org.castor.core.util.CycleBreaker.releaseCycleHandle(_posList);
    }
    if (_segList != null
        && !org.castor.core.util.CycleBreaker.startingToCycle(_segList)) {
      result = 37 * result + _segList.hashCode();
      org.castor.core.util.CycleBreaker.releaseCycleHandle(_segList);
    }

    return result;
  }

  /**
   * Method isValid.
   * 
   * @return true if this object is valid according to the schema
   */
  public boolean isValid() {
    try {
      validate();
    } catch (org.exolab.castor.xml.ValidationException vex) {
      return false;
    }
    return true;
  }

  /**
     */
  public void removeAllPos() {
    this._posList.clear();
  }

  /**
     */
  public void removeAllSeg() {
    this._segList.clear();
  }

  /**
   * Method removePos.
   * 
   * @param vPos
   * @return true if the object was removed from the collection.
   */
  public boolean removePos(final uk.ac.vamsas.objects.core.Pos vPos) {
    boolean removed = _posList.remove(vPos);
    return removed;
  }

  /**
   * Method removePosAt.
   * 
   * @param index
   * @return the element removed from the collection
   */
  public uk.ac.vamsas.objects.core.Pos removePosAt(final int index) {
    java.lang.Object obj = this._posList.remove(index);
    return (uk.ac.vamsas.objects.core.Pos) obj;
  }

  /**
   * Method removeSeg.
   * 
   * @param vSeg
   * @return true if the object was removed from the collection.
   */
  public boolean removeSeg(final uk.ac.vamsas.objects.core.Seg vSeg) {
    boolean removed = _segList.remove(vSeg);
    return removed;
  }

  /**
   * Method removeSegAt.
   * 
   * @param index
   * @return the element removed from the collection
   */
  public uk.ac.vamsas.objects.core.Seg removeSegAt(final int index) {
    java.lang.Object obj = this._segList.remove(index);
    return (uk.ac.vamsas.objects.core.Seg) obj;
  }

  /**
   * 
   * 
   * @param index
   * @param vPos
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void setPos(final int index, final uk.ac.vamsas.objects.core.Pos vPos)
      throws java.lang.IndexOutOfBoundsException {
    // check bounds for index
    if (index < 0 || index >= this._posList.size()) {
      throw new IndexOutOfBoundsException("setPos: Index value '" + index
          + "' not in range [0.." + (this._posList.size() - 1) + "]");
    }

    this._posList.set(index, vPos);
  }

  /**
   * 
   * 
   * @param vPosArray
   */
  public void setPos(final uk.ac.vamsas.objects.core.Pos[] vPosArray) {
    // -- copy array
    _posList.clear();

    for (int i = 0; i < vPosArray.length; i++) {
      this._posList.add(vPosArray[i]);
    }
  }

  /**
   * Sets the value of '_posList' by copying the given Vector. All elements will
   * be checked for type safety.
   * 
   * @param vPosList
   *          the Vector to copy.
   */
  public void setPos(final java.util.Vector vPosList) {
    // copy vector
    this._posList.clear();

    this._posList.addAll(vPosList);
  }

  /**
   * Sets the value of '_posList' by setting it to the given Vector. No type
   * checking is performed.
   * 
   * @deprecated
   * 
   * @param posVector
   *          the Vector to set.
   */
  public void setPosAsReference(final java.util.Vector posVector) {
    this._posList = posVector;
  }

  /**
   * 
   * 
   * @param index
   * @param vSeg
   * @throws java.lang.IndexOutOfBoundsException
   *           if the index given is outside the bounds of the collection
   */
  public void setSeg(final int index, final uk.ac.vamsas.objects.core.Seg vSeg)
      throws java.lang.IndexOutOfBoundsException {
    // check bounds for index
    if (index < 0 || index >= this._segList.size()) {
      throw new IndexOutOfBoundsException("setSeg: Index value '" + index
          + "' not in range [0.." + (this._segList.size() - 1) + "]");
    }

    this._segList.set(index, vSeg);
  }

  /**
   * 
   * 
   * @param vSegArray
   */
  public void setSeg(final uk.ac.vamsas.objects.core.Seg[] vSegArray) {
    // -- copy array
    _segList.clear();

    for (int i = 0; i < vSegArray.length; i++) {
      this._segList.add(vSegArray[i]);
    }
  }

  /**
   * Sets the value of '_segList' by copying the given Vector. All elements will
   * be checked for type safety.
   * 
   * @param vSegList
   *          the Vector to copy.
   */
  public void setSeg(final java.util.Vector vSegList) {
    // copy vector
    this._segList.clear();

    this._segList.addAll(vSegList);
  }

  /**
   * Sets the value of '_segList' by setting it to the given Vector. No type
   * checking is performed.
   * 
   * @deprecated
   * 
   * @param segVector
   *          the Vector to set.
   */
  public void setSegAsReference(final java.util.Vector segVector) {
    this._segList = segVector;
  }

  /**
   * 
   * 
   * @throws org.exolab.castor.xml.ValidationException
   *           if this object is an invalid instance according to the schema
   */
  public void validate() throws org.exolab.castor.xml.ValidationException {
    org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
    validator.validate(this);
  }

}