Package gov.nasa.arc.pds.xml.generated
Class FileAreaServiceDescription
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.FileArea
- 
- gov.nasa.arc.pds.xml.generated.FileAreaServiceDescription
 
 
- 
 public class FileAreaServiceDescription extends FileArea The File Area Service Description class describes a file that contains a service description.Java class for File_Area_Service_Description complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="File_Area_Service_Description"> <complexContent> <extension base="{http://pds.nasa.gov/pds4/pds/v1}File_Area"> <sequence> <element name="File" type="{http://pds.nasa.gov/pds4/pds/v1}File"/> <element name="Service_Description" type="{http://pds.nasa.gov/pds4/pds/v1}Service_Description" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected Filefileprotected java.util.List<ServiceDescription>serviceDescriptions
 - 
Constructor SummaryConstructors Constructor Description FileAreaServiceDescription()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description FilegetFile()Gets the value of the file property.java.util.List<ServiceDescription>getServiceDescriptions()Gets the value of the serviceDescriptions property.voidsetFile(File value)Sets the value of the file property.
 
- 
- 
- 
Field Detail- 
fileprotected File file 
 - 
serviceDescriptionsprotected java.util.List<ServiceDescription> serviceDescriptions 
 
- 
 - 
Method Detail- 
setFilepublic void setFile(File value) Sets the value of the file property.- Parameters:
- value- allowed object is- File
 
 - 
getServiceDescriptionspublic java.util.List<ServiceDescription> getServiceDescriptions() Gets the value of the serviceDescriptions 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 setmethod for the serviceDescriptions property.For example, to add a new item, do as follows: getServiceDescriptions().add(newItem); Objects of the following type(s) are allowed in the list ServiceDescription- Returns:
- The value of the serviceDescriptions property.
 
 
- 
 
-