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

com.netgrif.application.engine.importer.model.Layout Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version

package com.netgrif.application.engine.importer.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for layout complex type. * *

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

 * <complexType name="layout">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="x" type="{}nonNegativeInteger" minOccurs="0"/>
 *         <element name="y" type="{}nonNegativeInteger" minOccurs="0"/>
 *         <element name="rows" type="{}nonNegativeInteger" minOccurs="0"/>
 *         <element name="cols" type="{}nonNegativeInteger" minOccurs="0"/>
 *         <element name="offset" type="{}nonNegativeInteger" minOccurs="0"/>
 *         <element name="template" type="{}template" minOccurs="0"/>
 *         <element name="appearance" type="{}appearance" minOccurs="0"/>
 *         <element name="alignment" type="{}fieldAlignment" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "layout", propOrder = { "x", "y", "rows", "cols", "offset", "template", "appearance", "alignment" }) public class Layout { protected Integer x; protected Integer y; protected Integer rows; protected Integer cols; protected Integer offset; @XmlSchemaType(name = "string") protected Template template; @XmlSchemaType(name = "string") protected Appearance appearance; @XmlSchemaType(name = "string") protected FieldAlignment alignment; /** * Gets the value of the x property. * * @return * possible object is * {@link Integer } * */ public Integer getX() { return x; } /** * Sets the value of the x property. * * @param value * allowed object is * {@link Integer } * */ public void setX(Integer value) { this.x = value; } /** * Gets the value of the y property. * * @return * possible object is * {@link Integer } * */ public Integer getY() { return y; } /** * Sets the value of the y property. * * @param value * allowed object is * {@link Integer } * */ public void setY(Integer value) { this.y = 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 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 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 template property. * * @return * possible object is * {@link Template } * */ public Template getTemplate() { return template; } /** * Sets the value of the template property. * * @param value * allowed object is * {@link Template } * */ public void setTemplate(Template value) { this.template = value; } /** * Gets the value of the appearance property. * * @return * possible object is * {@link Appearance } * */ public Appearance getAppearance() { return appearance; } /** * Sets the value of the appearance property. * * @param value * allowed object is * {@link Appearance } * */ public void setAppearance(Appearance value) { this.appearance = value; } /** * Gets the value of the alignment property. * * @return * possible object is * {@link FieldAlignment } * */ public FieldAlignment getAlignment() { return alignment; } /** * Sets the value of the alignment property. * * @param value * allowed object is * {@link FieldAlignment } * */ public void setAlignment(FieldAlignment value) { this.alignment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy