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

com.netgrif.application.engine.importer.model.Place 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for place complex type. * *

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

 * <complexType name="place">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="x" type="{}nonNegativeInteger"/>
 *         <element name="y" type="{}nonNegativeInteger"/>
 *         <element name="label" type="{}i18nStringType"/>
 *         <element name="tokens" type="{}nonNegativeInteger"/>
 *         <choice>
 *           <element name="isStatic" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *           <element name="static" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "place", propOrder = { "id", "x", "y", "label", "tokens", "isStatic", "_static" }) public class Place { @XmlElement(required = true) protected String id; protected int x; protected int y; @XmlElement(required = true) protected I18NStringType label; protected int tokens; protected Boolean isStatic; @XmlElement(name = "static") protected Boolean _static; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the x property. * */ public int getX() { return x; } /** * Sets the value of the x property. * */ public void setX(int value) { this.x = value; } /** * Gets the value of the y property. * */ public int getY() { return y; } /** * Sets the value of the y property. * */ public void setY(int value) { this.y = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link I18NStringType } * */ public I18NStringType getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link I18NStringType } * */ public void setLabel(I18NStringType value) { this.label = value; } /** * Gets the value of the tokens property. * */ public int getTokens() { return tokens; } /** * Sets the value of the tokens property. * */ public void setTokens(int value) { this.tokens = value; } /** * Gets the value of the isStatic property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsStatic() { return isStatic; } /** * Sets the value of the isStatic property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsStatic(Boolean value) { this.isStatic = value; } /** * Gets the value of the static property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStatic() { return _static; } /** * Sets the value of the static property. * * @param value * allowed object is * {@link Boolean } * */ public void setStatic(Boolean value) { this._static = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy