com.netgrif.application.engine.importer.model.TransitionLayout 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.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for transitionLayout complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="transitionLayout">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="cols" type="{}nonNegativeInteger" minOccurs="0"/>
* <element name="rows" type="{}nonNegativeInteger" minOccurs="0"/>
* <element name="offset" type="{}nonNegativeInteger" minOccurs="0"/>
* <element name="fieldAlignment" type="{}fieldAlignment" minOccurs="0"/>
* <element name="hideEmptyRows" type="{}hideEmptyRows" minOccurs="0"/>
* <element name="compactDirection" type="{}compactDirection" minOccurs="0"/>
* </sequence>
* <attribute name="type" type="{}layoutType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "transitionLayout", propOrder = {
"cols",
"rows",
"offset",
"fieldAlignment",
"hideEmptyRows",
"compactDirection"
})
public class TransitionLayout {
protected Integer cols;
protected Integer rows;
protected Integer offset;
@XmlSchemaType(name = "string")
protected FieldAlignment fieldAlignment;
@XmlSchemaType(name = "string")
protected HideEmptyRows hideEmptyRows;
@XmlSchemaType(name = "string")
protected CompactDirection compactDirection;
@XmlAttribute(name = "type")
protected LayoutType type;
/**
* Gets the value of the cols property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCols() {
return cols;
}
/**
* Sets the value of the cols property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCols(Integer value) {
this.cols = value;
}
/**
* Gets the value of the rows property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRows() {
return rows;
}
/**
* Sets the value of the rows property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRows(Integer value) {
this.rows = value;
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOffset(Integer value) {
this.offset = value;
}
/**
* Gets the value of the fieldAlignment property.
*
* @return
* possible object is
* {@link FieldAlignment }
*
*/
public FieldAlignment getFieldAlignment() {
return fieldAlignment;
}
/**
* Sets the value of the fieldAlignment property.
*
* @param value
* allowed object is
* {@link FieldAlignment }
*
*/
public void setFieldAlignment(FieldAlignment value) {
this.fieldAlignment = value;
}
/**
* Gets the value of the hideEmptyRows property.
*
* @return
* possible object is
* {@link HideEmptyRows }
*
*/
public HideEmptyRows getHideEmptyRows() {
return hideEmptyRows;
}
/**
* Sets the value of the hideEmptyRows property.
*
* @param value
* allowed object is
* {@link HideEmptyRows }
*
*/
public void setHideEmptyRows(HideEmptyRows value) {
this.hideEmptyRows = value;
}
/**
* Gets the value of the compactDirection property.
*
* @return
* possible object is
* {@link CompactDirection }
*
*/
public CompactDirection getCompactDirection() {
return compactDirection;
}
/**
* Sets the value of the compactDirection property.
*
* @param value
* allowed object is
* {@link CompactDirection }
*
*/
public void setCompactDirection(CompactDirection value) {
this.compactDirection = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link LayoutType }
*
*/
public LayoutType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link LayoutType }
*
*/
public void setType(LayoutType value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy