Class SoftwareBinary
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.SoftwareBinary
-
public class SoftwareBinary extends java.lang.Object
The Software Binary class provides a description of a software code that is stored as a compiled binary file.Java class for Software_Binary complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Software_Binary"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="files" type="{http://pds.nasa.gov/pds4/pds/v1}files"/> <element name="os_version" type="{http://pds.nasa.gov/pds4/pds/v1}os_version" maxOccurs="unbounded"/> <element name="program_notes_id" type="{http://pds.nasa.gov/pds4/pds/v1}program_notes_id"/> <element name="software_format_type" type="{http://pds.nasa.gov/pds4/pds/v1}software_format_type"/> <element name="supported_architecture_note" type="{http://pds.nasa.gov/pds4/pds/v1}supported_architecture_note" maxOccurs="unbounded"/> <element name="supported_operating_system_note" type="{http://pds.nasa.gov/pds4/pds/v1}supported_operating_system_note" maxOccurs="unbounded"/> <element name="system_requirements_note" type="{http://pds.nasa.gov/pds4/pds/v1}system_requirements_note"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.math.BigInteger
files
protected java.util.List<java.lang.String>
osVersions
protected java.lang.String
programNotesId
protected java.lang.String
softwareFormatType
protected java.util.List<java.lang.String>
supportedArchitectureNotes
protected java.util.List<java.lang.String>
supportedOperatingSystemNotes
protected java.lang.String
systemRequirementsNote
-
Constructor Summary
Constructors Constructor Description SoftwareBinary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigInteger
getFiles()
Gets the value of the files property.java.util.List<java.lang.String>
getOsVersions()
Gets the value of the osVersions property.java.lang.String
getProgramNotesId()
Gets the value of the programNotesId property.java.lang.String
getSoftwareFormatType()
Gets the value of the softwareFormatType property.java.util.List<java.lang.String>
getSupportedArchitectureNotes()
Gets the value of the supportedArchitectureNotes property.java.util.List<java.lang.String>
getSupportedOperatingSystemNotes()
Gets the value of the supportedOperatingSystemNotes property.java.lang.String
getSystemRequirementsNote()
Gets the value of the systemRequirementsNote property.void
setFiles(java.math.BigInteger value)
Sets the value of the files property.void
setProgramNotesId(java.lang.String value)
Sets the value of the programNotesId property.void
setSoftwareFormatType(java.lang.String value)
Sets the value of the softwareFormatType property.void
setSystemRequirementsNote(java.lang.String value)
Sets the value of the systemRequirementsNote property.
-
-
-
Field Detail
-
files
protected java.math.BigInteger files
-
osVersions
protected java.util.List<java.lang.String> osVersions
-
programNotesId
protected java.lang.String programNotesId
-
softwareFormatType
protected java.lang.String softwareFormatType
-
supportedArchitectureNotes
protected java.util.List<java.lang.String> supportedArchitectureNotes
-
supportedOperatingSystemNotes
protected java.util.List<java.lang.String> supportedOperatingSystemNotes
-
systemRequirementsNote
protected java.lang.String systemRequirementsNote
-
-
Method Detail
-
getFiles
public java.math.BigInteger getFiles()
Gets the value of the files property.- Returns:
- possible object is
BigInteger
-
setFiles
public void setFiles(java.math.BigInteger value)
Sets the value of the files property.- Parameters:
value
- allowed object isBigInteger
-
getOsVersions
public java.util.List<java.lang.String> getOsVersions()
Gets the value of the osVersions 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 osVersions property.For example, to add a new item, do as follows:
getOsVersions().add(newItem);
Objects of the following type(s) are allowed in the list
String
- Returns:
- The value of the osVersions property.
-
getProgramNotesId
public java.lang.String getProgramNotesId()
Gets the value of the programNotesId property.- Returns:
- possible object is
String
-
setProgramNotesId
public void setProgramNotesId(java.lang.String value)
Sets the value of the programNotesId property.- Parameters:
value
- allowed object isString
-
getSoftwareFormatType
public java.lang.String getSoftwareFormatType()
Gets the value of the softwareFormatType property.- Returns:
- possible object is
String
-
setSoftwareFormatType
public void setSoftwareFormatType(java.lang.String value)
Sets the value of the softwareFormatType property.- Parameters:
value
- allowed object isString
-
getSupportedArchitectureNotes
public java.util.List<java.lang.String> getSupportedArchitectureNotes()
Gets the value of the supportedArchitectureNotes 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 supportedArchitectureNotes property.For example, to add a new item, do as follows:
getSupportedArchitectureNotes().add(newItem);
Objects of the following type(s) are allowed in the list
String
- Returns:
- The value of the supportedArchitectureNotes property.
-
getSupportedOperatingSystemNotes
public java.util.List<java.lang.String> getSupportedOperatingSystemNotes()
Gets the value of the supportedOperatingSystemNotes 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 supportedOperatingSystemNotes property.For example, to add a new item, do as follows:
getSupportedOperatingSystemNotes().add(newItem);
Objects of the following type(s) are allowed in the list
String
- Returns:
- The value of the supportedOperatingSystemNotes property.
-
getSystemRequirementsNote
public java.lang.String getSystemRequirementsNote()
Gets the value of the systemRequirementsNote property.- Returns:
- possible object is
String
-
setSystemRequirementsNote
public void setSystemRequirementsNote(java.lang.String value)
Sets the value of the systemRequirementsNote property.- Parameters:
value
- allowed object isString
-
-