All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.arc.pds.xml.generated.GroupFieldCharacter Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * The Group_Field_Character class allows a group
 *         of table fields.
 * 
 * 

Java class for Group_Field_Character complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Group_Field_Character">
 *   <complexContent>
 *     <extension base="{http://pds.nasa.gov/pds4/pds/v1}Group">
 *       <sequence>
 *         <element name="group_location" type="{http://pds.nasa.gov/pds4/pds/v1}group_location"/>
 *         <element name="group_length" type="{http://pds.nasa.gov/pds4/pds/v1}group_length"/>
 *         <choice maxOccurs="unbounded">
 *           <element name="Field_Character" type="{http://pds.nasa.gov/pds4/pds/v1}Field_Character"/>
 *           <element name="Group_Field_Character" type="{http://pds.nasa.gov/pds4/pds/v1}Group_Field_Character"/>
 *         </choice>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Group_Field_Character", propOrder = { "groupLocation", "groupLength", "fieldCharactersAndGroupFieldCharacters" }) public class GroupFieldCharacter extends Group { @XmlElement(name = "group_location", required = true) protected GroupLocation groupLocation; @XmlElement(name = "group_length", required = true) protected GroupLength groupLength; @XmlElements({ @XmlElement(name = "Field_Character", type = FieldCharacter.class), @XmlElement(name = "Group_Field_Character", type = GroupFieldCharacter.class) }) protected List fieldCharactersAndGroupFieldCharacters; /** * Gets the value of the groupLocation property. * * @return * possible object is * {@link GroupLocation } * */ public GroupLocation getGroupLocation() { return groupLocation; } /** * Sets the value of the groupLocation property. * * @param value * allowed object is * {@link GroupLocation } * */ public void setGroupLocation(GroupLocation value) { this.groupLocation = value; } /** * Gets the value of the groupLength property. * * @return * possible object is * {@link GroupLength } * */ public GroupLength getGroupLength() { return groupLength; } /** * Sets the value of the groupLength property. * * @param value * allowed object is * {@link GroupLength } * */ public void setGroupLength(GroupLength value) { this.groupLength = value; } /** * Gets the value of the fieldCharactersAndGroupFieldCharacters property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the fieldCharactersAndGroupFieldCharacters property. * *

* For example, to add a new item, do as follows: *

     *    getFieldCharactersAndGroupFieldCharacters().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FieldCharacter } * {@link GroupFieldCharacter } * * */ public List getFieldCharactersAndGroupFieldCharacters() { if (fieldCharactersAndGroupFieldCharacters == null) { fieldCharactersAndGroupFieldCharacters = new ArrayList(); } return this.fieldCharactersAndGroupFieldCharacters; } }