org.rutebanken.netex.model.PathLink_DerivedViewStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.21 at 10:53:23 AM CEST
//
package org.rutebanken.netex.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for PathLink_DerivedViewStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PathLink_DerivedViewStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}DerivedViewStructure">
* <sequence>
* <element name="HideLink" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="HideDestination" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ShowEntranceSeparately" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ShowExitSeparately" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ShowHeadingSeparately" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PathLink_DerivedViewStructure", propOrder = {
"hideLink",
"hideDestination",
"showEntranceSeparately",
"showExitSeparately",
"showHeadingSeparately"
})
@XmlSeeAlso({
PathLinkView.class
})
public class PathLink_DerivedViewStructure
extends DerivedViewStructure
{
@XmlElement(name = "HideLink")
protected Boolean hideLink;
@XmlElement(name = "HideDestination")
protected Boolean hideDestination;
@XmlElement(name = "ShowEntranceSeparately")
protected Boolean showEntranceSeparately;
@XmlElement(name = "ShowExitSeparately")
protected Boolean showExitSeparately;
@XmlElement(name = "ShowHeadingSeparately")
protected Boolean showHeadingSeparately;
/**
* Gets the value of the hideLink property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHideLink() {
return hideLink;
}
/**
* Sets the value of the hideLink property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHideLink(Boolean value) {
this.hideLink = value;
}
/**
* Gets the value of the hideDestination property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHideDestination() {
return hideDestination;
}
/**
* Sets the value of the hideDestination property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHideDestination(Boolean value) {
this.hideDestination = value;
}
/**
* Gets the value of the showEntranceSeparately property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowEntranceSeparately() {
return showEntranceSeparately;
}
/**
* Sets the value of the showEntranceSeparately property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShowEntranceSeparately(Boolean value) {
this.showEntranceSeparately = value;
}
/**
* Gets the value of the showExitSeparately property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowExitSeparately() {
return showExitSeparately;
}
/**
* Sets the value of the showExitSeparately property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShowExitSeparately(Boolean value) {
this.showExitSeparately = value;
}
/**
* Gets the value of the showHeadingSeparately property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isShowHeadingSeparately() {
return showHeadingSeparately;
}
/**
* Sets the value of the showHeadingSeparately property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setShowHeadingSeparately(Boolean value) {
this.showHeadingSeparately = value;
}
public PathLink_DerivedViewStructure withHideLink(Boolean value) {
setHideLink(value);
return this;
}
public PathLink_DerivedViewStructure withHideDestination(Boolean value) {
setHideDestination(value);
return this;
}
public PathLink_DerivedViewStructure withShowEntranceSeparately(Boolean value) {
setShowEntranceSeparately(value);
return this;
}
public PathLink_DerivedViewStructure withShowExitSeparately(Boolean value) {
setShowExitSeparately(value);
return this;
}
public PathLink_DerivedViewStructure withShowHeadingSeparately(Boolean value) {
setShowHeadingSeparately(value);
return this;
}
@Override
public PathLink_DerivedViewStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public PathLink_DerivedViewStructure withId(String value) {
setId(value);
return this;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy