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

gov.nasa.arc.pds.xml.generated.DisplaySettings 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * The Display_Settings class contains one or more
 *         classes describing how data should be displayed on a display
 *         device.
 * 
 * 

Java class for Display_Settings complex type. * *

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

 * <complexType name="Display_Settings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://pds.nasa.gov/pds4/pds/v1}Local_Internal_Reference"/>
 *         <element ref="{http://pds.nasa.gov/pds4/disp/v1}Display_Direction"/>
 *         <element ref="{http://pds.nasa.gov/pds4/disp/v1}Color_Display_Settings" minOccurs="0"/>
 *         <element ref="{http://pds.nasa.gov/pds4/disp/v1}Movie_Display_Settings" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Display_Settings", namespace = "http://pds.nasa.gov/pds4/disp/v1", propOrder = { "localInternalReference", "displayDirection", "colorDisplaySettings", "movieDisplaySettings" }) @XmlRootElement(name = "Display_Settings", namespace = "http://pds.nasa.gov/pds4/disp/v1") public class DisplaySettings { @XmlElement(name = "Local_Internal_Reference", namespace = "http://pds.nasa.gov/pds4/pds/v1", required = true) protected LocalInternalReference localInternalReference; @XmlElement(name = "Display_Direction", required = true) protected DisplayDirection displayDirection; @XmlElement(name = "Color_Display_Settings") protected ColorDisplaySettings colorDisplaySettings; @XmlElement(name = "Movie_Display_Settings") protected MovieDisplaySettings movieDisplaySettings; /** * Gets the value of the localInternalReference property. * * @return * possible object is * {@link LocalInternalReference } * */ public LocalInternalReference getLocalInternalReference() { return localInternalReference; } /** * Sets the value of the localInternalReference property. * * @param value * allowed object is * {@link LocalInternalReference } * */ public void setLocalInternalReference(LocalInternalReference value) { this.localInternalReference = value; } /** * Gets the value of the displayDirection property. * * @return * possible object is * {@link DisplayDirection } * */ public DisplayDirection getDisplayDirection() { return displayDirection; } /** * Sets the value of the displayDirection property. * * @param value * allowed object is * {@link DisplayDirection } * */ public void setDisplayDirection(DisplayDirection value) { this.displayDirection = value; } /** * Gets the value of the colorDisplaySettings property. * * @return * possible object is * {@link ColorDisplaySettings } * */ public ColorDisplaySettings getColorDisplaySettings() { return colorDisplaySettings; } /** * Sets the value of the colorDisplaySettings property. * * @param value * allowed object is * {@link ColorDisplaySettings } * */ public void setColorDisplaySettings(ColorDisplaySettings value) { this.colorDisplaySettings = value; } /** * Gets the value of the movieDisplaySettings property. * * @return * possible object is * {@link MovieDisplaySettings } * */ public MovieDisplaySettings getMovieDisplaySettings() { return movieDisplaySettings; } /** * Sets the value of the movieDisplaySettings property. * * @param value * allowed object is * {@link MovieDisplaySettings } * */ public void setMovieDisplaySettings(MovieDisplaySettings value) { this.movieDisplaySettings = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy