net.datastream.schemas.mp_entities.equiplinearref_001.OverviewDetails Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.equiplinearref_001;
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;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}DISPLAYONOVERVIEW" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}COLOR" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ICONCODE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ICONPATH" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"displayonoverview",
"color",
"iconcode",
"iconpath"
})
@XmlRootElement(name = "OverviewDetails")
public class OverviewDetails {
@XmlElement(name = "DISPLAYONOVERVIEW", namespace = "http://schemas.datastream.net/MP_fields", defaultValue = "true")
protected String displayonoverview;
@XmlElement(name = "COLOR", namespace = "http://schemas.datastream.net/MP_fields")
protected String color;
@XmlElement(name = "ICONCODE", namespace = "http://schemas.datastream.net/MP_fields")
protected String iconcode;
@XmlElement(name = "ICONPATH", namespace = "http://schemas.datastream.net/MP_fields")
protected String iconpath;
/**
* Obtient la valeur de la propriété displayonoverview.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDISPLAYONOVERVIEW() {
return displayonoverview;
}
/**
* Définit la valeur de la propriété displayonoverview.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDISPLAYONOVERVIEW(String value) {
this.displayonoverview = value;
}
/**
* Obtient la valeur de la propriété color.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOLOR() {
return color;
}
/**
* Définit la valeur de la propriété color.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOLOR(String value) {
this.color = value;
}
/**
* Obtient la valeur de la propriété iconcode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICONCODE() {
return iconcode;
}
/**
* Définit la valeur de la propriété iconcode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICONCODE(String value) {
this.iconcode = value;
}
/**
* Obtient la valeur de la propriété iconpath.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICONPATH() {
return iconpath;
}
/**
* Définit la valeur de la propriété iconpath.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICONPATH(String value) {
this.iconpath = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy