001/* 002 * BioJava development code 003 * 004 * This code may be freely distributed and modified under the 005 * terms of the GNU Lesser General Public Licence. This should 006 * be distributed with the code. If you do not have a copy, 007 * see: 008 * 009 * http://www.gnu.org/copyleft/lesser.html 010 * 011 * Copyright for this code is held jointly by the individual 012 * authors. These should be listed in @author doc comments. 013 * 014 * For more information on the BioJava project and its aims, 015 * or to join the biojava-l mailing list, visit the home page 016 * at: 017 * 018 * http://www.biojava.org/ 019 * 020 */ 021// 022// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 023// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 024// Any modifications to this file will be lost upon recompilation of the source schema. 025// Generated on: 2013.12.17 at 03:04:15 PM PST 026// 027 028 029package org.biojava.nbio.structure.validation; 030 031import javax.xml.bind.annotation.*; 032import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; 033import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; 034import java.math.BigDecimal; 035import java.math.BigInteger; 036import java.util.ArrayList; 037import java.util.List; 038 039 040/** 041 * <p>Java class for anonymous complex type. 042 * 043 * <p>The following schema fragment specifies the expected content contained within this class. 044 * 045 * <pre> 046 * <complexType> 047 * <complexContent> 048 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 049 * <sequence> 050 * <element ref="{}angle-outlier" maxOccurs="unbounded" minOccurs="0"/> 051 * <element ref="{}clash" maxOccurs="unbounded" minOccurs="0"/> 052 * <element ref="{}bond-outlier" maxOccurs="unbounded" minOccurs="0"/> 053 * <element ref="{}mog-angle-outlier" maxOccurs="unbounded" minOccurs="0"/> 054 * <choice> 055 * <element ref="{}symm-clash" maxOccurs="unbounded" minOccurs="0"/> 056 * <element ref="{}mog-bond-outlier" maxOccurs="unbounded" minOccurs="0"/> 057 * </choice> 058 * </sequence> 059 * <attribute name="NatomsEDS" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> 060 * <attribute name="altcode" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> 061 * <attribute name="avgoccu" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 062 * <attribute name="chain" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 063 * <attribute name="ent" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> 064 * <attribute name="flippable-sidechain" type="{http://www.w3.org/2001/XMLSchema}integer" /> 065 * <attribute name="icode" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> 066 * <attribute name="ligRSRZ" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 067 * <attribute name="ligRSRnbrMean" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 068 * <attribute name="ligRSRnbrStdev" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 069 * <attribute name="ligRSRnumnbrs" type="{http://www.w3.org/2001/XMLSchema}integer" /> 070 * <attribute name="model" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> 071 * <attribute name="mogul-ignore" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 072 * <attribute name="num-H-reduce" type="{http://www.w3.org/2001/XMLSchema}integer" /> 073 * <attribute name="owab" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 074 * <attribute name="phi" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 075 * <attribute name="psi" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 076 * <attribute name="rama" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 077 * <attribute name="resname" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 078 * <attribute name="resnum" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> 079 * <attribute name="rota" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> 080 * <attribute name="rscc" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 081 * <attribute name="rsr" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 082 * <attribute name="rsrz" type="{http://www.w3.org/2001/XMLSchema}decimal" /> 083 * <attribute name="said" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 084 * <attribute name="seq" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> 085 * </restriction> 086 * </complexContent> 087 * </complexType> 088 * </pre> 089 * 090 * 091 */ 092@XmlAccessorType(XmlAccessType.FIELD) 093@XmlType(name = "", propOrder = { 094 "angleOutlier", 095 "clash", 096 "bondOutlier", 097 "mogAngleOutlier", 098 "symmClash", 099 "mogBondOutlier" 100}) 101@XmlRootElement(name = "ModelledSubgroup") 102public class ModelledSubgroup { 103 104 @XmlElement(name = "angle-outlier") 105 protected List<AngleOutlier> angleOutlier; 106 protected List<Clash> clash; 107 @XmlElement(name = "bond-outlier") 108 protected List<BondOutlier> bondOutlier; 109 @XmlElement(name = "mog-angle-outlier") 110 protected List<MogAngleOutlier> mogAngleOutlier; 111 @XmlElement(name = "symm-clash") 112 protected List<SymmClash> symmClash; 113 @XmlElement(name = "mog-bond-outlier") 114 protected List<MogBondOutlier> mogBondOutlier; 115 @XmlAttribute(name = "NatomsEDS", required = true) 116 protected BigInteger natomsEDS; 117 @XmlAttribute(name = "altcode", required = true) 118 @XmlSchemaType(name = "anySimpleType") 119 protected String altcode; 120 @XmlAttribute(name = "avgoccu", required = true) 121 protected BigDecimal avgoccu; 122 @XmlAttribute(name = "chain", required = true) 123 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 124 @XmlSchemaType(name = "NCName") 125 protected String chain; 126 @XmlAttribute(name = "ent", required = true) 127 protected BigInteger ent; 128 @XmlAttribute(name = "flippable-sidechain") 129 protected BigInteger flippableSidechain; 130 @XmlAttribute(name = "icode", required = true) 131 @XmlSchemaType(name = "anySimpleType") 132 protected String icode; 133 @XmlAttribute(name = "ligRSRZ") 134 protected BigDecimal ligRSRZ; 135 @XmlAttribute(name = "ligRSRnbrMean") 136 protected BigDecimal ligRSRnbrMean; 137 @XmlAttribute(name = "ligRSRnbrStdev") 138 protected BigDecimal ligRSRnbrStdev; 139 @XmlAttribute(name = "ligRSRnumnbrs") 140 protected BigInteger ligRSRnumnbrs; 141 @XmlAttribute(name = "model", required = true) 142 protected BigInteger model; 143 @XmlAttribute(name = "mogul-ignore") 144 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 145 @XmlSchemaType(name = "NCName") 146 protected String mogulIgnore; 147 @XmlAttribute(name = "num-H-reduce") 148 protected BigInteger numHReduce; 149 @XmlAttribute(name = "owab", required = true) 150 protected BigDecimal owab; 151 @XmlAttribute(name = "phi") 152 protected BigDecimal phi; 153 @XmlAttribute(name = "psi") 154 protected BigDecimal psi; 155 @XmlAttribute(name = "rama") 156 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 157 @XmlSchemaType(name = "NCName") 158 protected String rama; 159 @XmlAttribute(name = "resname", required = true) 160 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 161 @XmlSchemaType(name = "NCName") 162 protected String resname; 163 @XmlAttribute(name = "resnum", required = true) 164 protected BigInteger resnum; 165 @XmlAttribute(name = "rota") 166 @XmlSchemaType(name = "anySimpleType") 167 protected String rota; 168 @XmlAttribute(name = "rscc", required = true) 169 protected BigDecimal rscc; 170 @XmlAttribute(name = "rsr", required = true) 171 protected BigDecimal rsr; 172 @XmlAttribute(name = "rsrz") 173 protected BigDecimal rsrz; 174 @XmlAttribute(name = "said", required = true) 175 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 176 @XmlSchemaType(name = "NCName") 177 protected String said; 178 @XmlAttribute(name = "seq", required = true) 179 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 180 @XmlSchemaType(name = "NMTOKEN") 181 protected String seq; 182 183 /** 184 * Gets the value of the angleOutlier property. 185 * 186 * <p> 187 * This accessor method returns a reference to the live list, 188 * not a snapshot. Therefore any modification you make to the 189 * returned list will be present inside the JAXB object. 190 * This is why there is not a <CODE>set</CODE> method for the angleOutlier property. 191 * 192 * <p> 193 * For example, to add a new item, do as follows: 194 * <pre> 195 * getAngleOutlier().add(newItem); 196 * </pre> 197 * 198 * 199 * <p> 200 * Objects of the following type(s) are allowed in the list 201 * {@link AngleOutlier } 202 * 203 * 204 */ 205 public List<AngleOutlier> getAngleOutlier() { 206 if (angleOutlier == null) { 207 angleOutlier = new ArrayList<AngleOutlier>(); 208 } 209 return this.angleOutlier; 210 } 211 212 /** 213 * Gets the value of the clash property. 214 * 215 * <p> 216 * This accessor method returns a reference to the live list, 217 * not a snapshot. Therefore any modification you make to the 218 * returned list will be present inside the JAXB object. 219 * This is why there is not a <CODE>set</CODE> method for the clash property. 220 * 221 * <p> 222 * For example, to add a new item, do as follows: 223 * <pre> 224 * getClash().add(newItem); 225 * </pre> 226 * 227 * 228 * <p> 229 * Objects of the following type(s) are allowed in the list 230 * {@link Clash } 231 * 232 * 233 */ 234 public List<Clash> getClash() { 235 if (clash == null) { 236 clash = new ArrayList<Clash>(); 237 } 238 return this.clash; 239 } 240 241 /** 242 * Gets the value of the bondOutlier property. 243 * 244 * <p> 245 * This accessor method returns a reference to the live list, 246 * not a snapshot. Therefore any modification you make to the 247 * returned list will be present inside the JAXB object. 248 * This is why there is not a <CODE>set</CODE> method for the bondOutlier property. 249 * 250 * <p> 251 * For example, to add a new item, do as follows: 252 * <pre> 253 * getBondOutlier().add(newItem); 254 * </pre> 255 * 256 * 257 * <p> 258 * Objects of the following type(s) are allowed in the list 259 * {@link BondOutlier } 260 * 261 * 262 */ 263 public List<BondOutlier> getBondOutlier() { 264 if (bondOutlier == null) { 265 bondOutlier = new ArrayList<BondOutlier>(); 266 } 267 return this.bondOutlier; 268 } 269 270 /** 271 * Gets the value of the mogAngleOutlier property. 272 * 273 * <p> 274 * This accessor method returns a reference to the live list, 275 * not a snapshot. Therefore any modification you make to the 276 * returned list will be present inside the JAXB object. 277 * This is why there is not a <CODE>set</CODE> method for the mogAngleOutlier property. 278 * 279 * <p> 280 * For example, to add a new item, do as follows: 281 * <pre> 282 * getMogAngleOutlier().add(newItem); 283 * </pre> 284 * 285 * 286 * <p> 287 * Objects of the following type(s) are allowed in the list 288 * {@link MogAngleOutlier } 289 * 290 * 291 */ 292 public List<MogAngleOutlier> getMogAngleOutlier() { 293 if (mogAngleOutlier == null) { 294 mogAngleOutlier = new ArrayList<MogAngleOutlier>(); 295 } 296 return this.mogAngleOutlier; 297 } 298 299 /** 300 * Gets the value of the symmClash property. 301 * 302 * <p> 303 * This accessor method returns a reference to the live list, 304 * not a snapshot. Therefore any modification you make to the 305 * returned list will be present inside the JAXB object. 306 * This is why there is not a <CODE>set</CODE> method for the symmClash property. 307 * 308 * <p> 309 * For example, to add a new item, do as follows: 310 * <pre> 311 * getSymmClash().add(newItem); 312 * </pre> 313 * 314 * 315 * <p> 316 * Objects of the following type(s) are allowed in the list 317 * {@link SymmClash } 318 * 319 * 320 */ 321 public List<SymmClash> getSymmClash() { 322 if (symmClash == null) { 323 symmClash = new ArrayList<SymmClash>(); 324 } 325 return this.symmClash; 326 } 327 328 /** 329 * Gets the value of the mogBondOutlier property. 330 * 331 * <p> 332 * This accessor method returns a reference to the live list, 333 * not a snapshot. Therefore any modification you make to the 334 * returned list will be present inside the JAXB object. 335 * This is why there is not a <CODE>set</CODE> method for the mogBondOutlier property. 336 * 337 * <p> 338 * For example, to add a new item, do as follows: 339 * <pre> 340 * getMogBondOutlier().add(newItem); 341 * </pre> 342 * 343 * 344 * <p> 345 * Objects of the following type(s) are allowed in the list 346 * {@link MogBondOutlier } 347 * 348 * 349 */ 350 public List<MogBondOutlier> getMogBondOutlier() { 351 if (mogBondOutlier == null) { 352 mogBondOutlier = new ArrayList<MogBondOutlier>(); 353 } 354 return this.mogBondOutlier; 355 } 356 357 /** 358 * Gets the value of the natomsEDS property. 359 * 360 * @return 361 * possible object is 362 * {@link BigInteger } 363 * 364 */ 365 public BigInteger getNatomsEDS() { 366 return natomsEDS; 367 } 368 369 /** 370 * Sets the value of the natomsEDS property. 371 * 372 * @param value 373 * allowed object is 374 * {@link BigInteger } 375 * 376 */ 377 public void setNatomsEDS(BigInteger value) { 378 this.natomsEDS = value; 379 } 380 381 /** 382 * Gets the value of the altcode property. 383 * 384 * @return 385 * possible object is 386 * {@link String } 387 * 388 */ 389 public String getAltcode() { 390 return altcode; 391 } 392 393 /** 394 * Sets the value of the altcode property. 395 * 396 * @param value 397 * allowed object is 398 * {@link String } 399 * 400 */ 401 public void setAltcode(String value) { 402 this.altcode = value; 403 } 404 405 /** 406 * Gets the value of the avgoccu property. 407 * 408 * @return 409 * possible object is 410 * {@link BigDecimal } 411 * 412 */ 413 public BigDecimal getAvgoccu() { 414 return avgoccu; 415 } 416 417 /** 418 * Sets the value of the avgoccu property. 419 * 420 * @param value 421 * allowed object is 422 * {@link BigDecimal } 423 * 424 */ 425 public void setAvgoccu(BigDecimal value) { 426 this.avgoccu = value; 427 } 428 429 /** 430 * Gets the value of the chain property. 431 * 432 * @return 433 * possible object is 434 * {@link String } 435 * 436 */ 437 public String getChain() { 438 return chain; 439 } 440 441 /** 442 * Sets the value of the chain property. 443 * 444 * @param value 445 * allowed object is 446 * {@link String } 447 * 448 */ 449 public void setChain(String value) { 450 this.chain = value; 451 } 452 453 /** 454 * Gets the value of the ent property. 455 * 456 * @return 457 * possible object is 458 * {@link BigInteger } 459 * 460 */ 461 public BigInteger getEnt() { 462 return ent; 463 } 464 465 /** 466 * Sets the value of the ent property. 467 * 468 * @param value 469 * allowed object is 470 * {@link BigInteger } 471 * 472 */ 473 public void setEnt(BigInteger value) { 474 this.ent = value; 475 } 476 477 /** 478 * Gets the value of the flippableSidechain property. 479 * 480 * @return 481 * possible object is 482 * {@link BigInteger } 483 * 484 */ 485 public BigInteger getFlippableSidechain() { 486 return flippableSidechain; 487 } 488 489 /** 490 * Sets the value of the flippableSidechain property. 491 * 492 * @param value 493 * allowed object is 494 * {@link BigInteger } 495 * 496 */ 497 public void setFlippableSidechain(BigInteger value) { 498 this.flippableSidechain = value; 499 } 500 501 /** 502 * Gets the value of the icode property. 503 * 504 * @return 505 * possible object is 506 * {@link String } 507 * 508 */ 509 public String getIcode() { 510 return icode; 511 } 512 513 /** 514 * Sets the value of the icode property. 515 * 516 * @param value 517 * allowed object is 518 * {@link String } 519 * 520 */ 521 public void setIcode(String value) { 522 this.icode = value; 523 } 524 525 /** 526 * Gets the value of the ligRSRZ property. 527 * 528 * @return 529 * possible object is 530 * {@link BigDecimal } 531 * 532 */ 533 public BigDecimal getLigRSRZ() { 534 return ligRSRZ; 535 } 536 537 /** 538 * Sets the value of the ligRSRZ property. 539 * 540 * @param value 541 * allowed object is 542 * {@link BigDecimal } 543 * 544 */ 545 public void setLigRSRZ(BigDecimal value) { 546 this.ligRSRZ = value; 547 } 548 549 /** 550 * Gets the value of the ligRSRnbrMean property. 551 * 552 * @return 553 * possible object is 554 * {@link BigDecimal } 555 * 556 */ 557 public BigDecimal getLigRSRnbrMean() { 558 return ligRSRnbrMean; 559 } 560 561 /** 562 * Sets the value of the ligRSRnbrMean property. 563 * 564 * @param value 565 * allowed object is 566 * {@link BigDecimal } 567 * 568 */ 569 public void setLigRSRnbrMean(BigDecimal value) { 570 this.ligRSRnbrMean = value; 571 } 572 573 /** 574 * Gets the value of the ligRSRnbrStdev property. 575 * 576 * @return 577 * possible object is 578 * {@link BigDecimal } 579 * 580 */ 581 public BigDecimal getLigRSRnbrStdev() { 582 return ligRSRnbrStdev; 583 } 584 585 /** 586 * Sets the value of the ligRSRnbrStdev property. 587 * 588 * @param value 589 * allowed object is 590 * {@link BigDecimal } 591 * 592 */ 593 public void setLigRSRnbrStdev(BigDecimal value) { 594 this.ligRSRnbrStdev = value; 595 } 596 597 /** 598 * Gets the value of the ligRSRnumnbrs property. 599 * 600 * @return 601 * possible object is 602 * {@link BigInteger } 603 * 604 */ 605 public BigInteger getLigRSRnumnbrs() { 606 return ligRSRnumnbrs; 607 } 608 609 /** 610 * Sets the value of the ligRSRnumnbrs property. 611 * 612 * @param value 613 * allowed object is 614 * {@link BigInteger } 615 * 616 */ 617 public void setLigRSRnumnbrs(BigInteger value) { 618 this.ligRSRnumnbrs = value; 619 } 620 621 /** 622 * Gets the value of the model property. 623 * 624 * @return 625 * possible object is 626 * {@link BigInteger } 627 * 628 */ 629 public BigInteger getModel() { 630 return model; 631 } 632 633 /** 634 * Sets the value of the model property. 635 * 636 * @param value 637 * allowed object is 638 * {@link BigInteger } 639 * 640 */ 641 public void setModel(BigInteger value) { 642 this.model = value; 643 } 644 645 /** 646 * Gets the value of the mogulIgnore property. 647 * 648 * @return 649 * possible object is 650 * {@link String } 651 * 652 */ 653 public String getMogulIgnore() { 654 return mogulIgnore; 655 } 656 657 /** 658 * Sets the value of the mogulIgnore property. 659 * 660 * @param value 661 * allowed object is 662 * {@link String } 663 * 664 */ 665 public void setMogulIgnore(String value) { 666 this.mogulIgnore = value; 667 } 668 669 /** 670 * Gets the value of the numHReduce property. 671 * 672 * @return 673 * possible object is 674 * {@link BigInteger } 675 * 676 */ 677 public BigInteger getNumHReduce() { 678 return numHReduce; 679 } 680 681 /** 682 * Sets the value of the numHReduce property. 683 * 684 * @param value 685 * allowed object is 686 * {@link BigInteger } 687 * 688 */ 689 public void setNumHReduce(BigInteger value) { 690 this.numHReduce = value; 691 } 692 693 /** 694 * Gets the value of the owab property. 695 * 696 * @return 697 * possible object is 698 * {@link BigDecimal } 699 * 700 */ 701 public BigDecimal getOwab() { 702 return owab; 703 } 704 705 /** 706 * Sets the value of the owab property. 707 * 708 * @param value 709 * allowed object is 710 * {@link BigDecimal } 711 * 712 */ 713 public void setOwab(BigDecimal value) { 714 this.owab = value; 715 } 716 717 /** 718 * Gets the value of the phi property. 719 * 720 * @return 721 * possible object is 722 * {@link BigDecimal } 723 * 724 */ 725 public BigDecimal getPhi() { 726 return phi; 727 } 728 729 /** 730 * Sets the value of the phi property. 731 * 732 * @param value 733 * allowed object is 734 * {@link BigDecimal } 735 * 736 */ 737 public void setPhi(BigDecimal value) { 738 this.phi = value; 739 } 740 741 /** 742 * Gets the value of the psi property. 743 * 744 * @return 745 * possible object is 746 * {@link BigDecimal } 747 * 748 */ 749 public BigDecimal getPsi() { 750 return psi; 751 } 752 753 /** 754 * Sets the value of the psi property. 755 * 756 * @param value 757 * allowed object is 758 * {@link BigDecimal } 759 * 760 */ 761 public void setPsi(BigDecimal value) { 762 this.psi = value; 763 } 764 765 /** 766 * Gets the value of the rama property. 767 * 768 * @return 769 * possible object is 770 * {@link String } 771 * 772 */ 773 public String getRama() { 774 return rama; 775 } 776 777 /** 778 * Sets the value of the rama property. 779 * 780 * @param value 781 * allowed object is 782 * {@link String } 783 * 784 */ 785 public void setRama(String value) { 786 this.rama = value; 787 } 788 789 /** 790 * Gets the value of the resname property. 791 * 792 * @return 793 * possible object is 794 * {@link String } 795 * 796 */ 797 public String getResname() { 798 return resname; 799 } 800 801 /** 802 * Sets the value of the resname property. 803 * 804 * @param value 805 * allowed object is 806 * {@link String } 807 * 808 */ 809 public void setResname(String value) { 810 this.resname = value; 811 } 812 813 /** 814 * Gets the value of the resnum property. 815 * 816 * @return 817 * possible object is 818 * {@link BigInteger } 819 * 820 */ 821 public BigInteger getResnum() { 822 return resnum; 823 } 824 825 /** 826 * Sets the value of the resnum property. 827 * 828 * @param value 829 * allowed object is 830 * {@link BigInteger } 831 * 832 */ 833 public void setResnum(BigInteger value) { 834 this.resnum = value; 835 } 836 837 /** 838 * Gets the value of the rota property. 839 * 840 * @return 841 * possible object is 842 * {@link String } 843 * 844 */ 845 public String getRota() { 846 return rota; 847 } 848 849 /** 850 * Sets the value of the rota property. 851 * 852 * @param value 853 * allowed object is 854 * {@link String } 855 * 856 */ 857 public void setRota(String value) { 858 this.rota = value; 859 } 860 861 /** 862 * Gets the value of the rscc property. 863 * 864 * @return 865 * possible object is 866 * {@link BigDecimal } 867 * 868 */ 869 public BigDecimal getRscc() { 870 return rscc; 871 } 872 873 /** 874 * Sets the value of the rscc property. 875 * 876 * @param value 877 * allowed object is 878 * {@link BigDecimal } 879 * 880 */ 881 public void setRscc(BigDecimal value) { 882 this.rscc = value; 883 } 884 885 /** 886 * Gets the value of the rsr property. 887 * 888 * @return 889 * possible object is 890 * {@link BigDecimal } 891 * 892 */ 893 public BigDecimal getRsr() { 894 return rsr; 895 } 896 897 /** 898 * Sets the value of the rsr property. 899 * 900 * @param value 901 * allowed object is 902 * {@link BigDecimal } 903 * 904 */ 905 public void setRsr(BigDecimal value) { 906 this.rsr = value; 907 } 908 909 /** 910 * Gets the value of the rsrz property. 911 * 912 * @return 913 * possible object is 914 * {@link BigDecimal } 915 * 916 */ 917 public BigDecimal getRsrz() { 918 return rsrz; 919 } 920 921 /** 922 * Sets the value of the rsrz property. 923 * 924 * @param value 925 * allowed object is 926 * {@link BigDecimal } 927 * 928 */ 929 public void setRsrz(BigDecimal value) { 930 this.rsrz = value; 931 } 932 933 /** 934 * Gets the value of the said property. 935 * 936 * @return 937 * possible object is 938 * {@link String } 939 * 940 */ 941 public String getSaid() { 942 return said; 943 } 944 945 /** 946 * Sets the value of the said property. 947 * 948 * @param value 949 * allowed object is 950 * {@link String } 951 * 952 */ 953 public void setSaid(String value) { 954 this.said = value; 955 } 956 957 /** 958 * Gets the value of the seq property. 959 * 960 * @return 961 * possible object is 962 * {@link String } 963 * 964 */ 965 public String getSeq() { 966 return seq; 967 } 968 969 /** 970 * Sets the value of the seq property. 971 * 972 * @param value 973 * allowed object is 974 * {@link String } 975 * 976 */ 977 public void setSeq(String value) { 978 this.seq = value; 979 } 980 981}