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

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

//
// 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The Color_Display_Settings class provides
 *         guidance to data users on how to display a multi-banded Array
 *         object on a color-capable display device.
 * 
 * 

Java class for Color_Display_Settings complex type. * *

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

 * <complexType name="Color_Display_Settings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="color_display_axis" type="{http://pds.nasa.gov/pds4/disp/v1}color_display_axis"/>
 *         <element name="comment" type="{http://pds.nasa.gov/pds4/pds/v1}comment" minOccurs="0"/>
 *         <element name="red_channel_band" type="{http://pds.nasa.gov/pds4/disp/v1}red_channel_band"/>
 *         <element name="green_channel_band" type="{http://pds.nasa.gov/pds4/disp/v1}green_channel_band"/>
 *         <element name="blue_channel_band" type="{http://pds.nasa.gov/pds4/disp/v1}blue_channel_band"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Color_Display_Settings", namespace = "http://pds.nasa.gov/pds4/disp/v1", propOrder = { "colorDisplayAxis", "comment", "redChannelBand", "greenChannelBand", "blueChannelBand" }) @XmlRootElement(name = "Color_Display_Settings", namespace = "http://pds.nasa.gov/pds4/disp/v1") public class ColorDisplaySettings { @XmlElement(name = "color_display_axis", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String colorDisplayAxis; protected String comment; @XmlElement(name = "red_channel_band") protected long redChannelBand; @XmlElement(name = "green_channel_band") protected long greenChannelBand; @XmlElement(name = "blue_channel_band") protected long blueChannelBand; /** * Gets the value of the colorDisplayAxis property. * * @return * possible object is * {@link String } * */ public String getColorDisplayAxis() { return colorDisplayAxis; } /** * Sets the value of the colorDisplayAxis property. * * @param value * allowed object is * {@link String } * */ public void setColorDisplayAxis(String value) { this.colorDisplayAxis = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the redChannelBand property. * */ public long getRedChannelBand() { return redChannelBand; } /** * Sets the value of the redChannelBand property. * */ public void setRedChannelBand(long value) { this.redChannelBand = value; } /** * Gets the value of the greenChannelBand property. * */ public long getGreenChannelBand() { return greenChannelBand; } /** * Sets the value of the greenChannelBand property. * */ public void setGreenChannelBand(long value) { this.greenChannelBand = value; } /** * Gets the value of the blueChannelBand property. * */ public long getBlueChannelBand() { return blueChannelBand; } /** * Sets the value of the blueChannelBand property. * */ public void setBlueChannelBand(long value) { this.blueChannelBand = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy