com.netgrif.application.engine.importer.model.BooleanImageView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.importer.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for booleanImageView complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="booleanImageView">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="true" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="false" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "booleanImageView", propOrder = {
"_true",
"_false"
})
public class BooleanImageView {
@XmlElement(name = "true", required = true)
protected String _true;
@XmlElement(name = "false", required = true)
protected String _false;
/**
* Gets the value of the true property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrue() {
return _true;
}
/**
* Sets the value of the true property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTrue(String value) {
this._true = value;
}
/**
* Gets the value of the false property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFalse() {
return _false;
}
/**
* Sets the value of the false property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFalse(String value) {
this._false = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy