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

com.netgrif.application.engine.importer.model.FieldView 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.XmlType;


/**
 * 

Java class for fieldView complex type. * *

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

 * <complexType name="fieldView">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="area" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="autocomplete" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="tree" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="table" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="image" type="{}booleanImageView"/>
 *         <element name="editor" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="htmlEditor" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="buttonType">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="standard"/>
 *               <enumeration value="raised"/>
 *               <enumeration value="stroked"/>
 *               <enumeration value="flat"/>
 *               <enumeration value="icon"/>
 *               <enumeration value="fab"/>
 *               <enumeration value="minifab"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="list">
 *           <simpleType>
 *             <union>
 *               <simpleType>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *                   <length value="0"/>
 *                 </restriction>
 *               </simpleType>
 *               <simpleType>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *                 </restriction>
 *               </simpleType>
 *             </union>
 *           </simpleType>
 *         </element>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "fieldView", propOrder = { "area", "autocomplete", "tree", "table", "image", "editor", "htmlEditor", "buttonType", "list" }) public class FieldView { protected String area; protected String autocomplete; protected String tree; protected String table; protected BooleanImageView image; protected Object editor; protected Object htmlEditor; protected String buttonType; protected String list; /** * Gets the value of the area property. * * @return * possible object is * {@link String } * */ public String getArea() { return area; } /** * Sets the value of the area property. * * @param value * allowed object is * {@link String } * */ public void setArea(String value) { this.area = value; } /** * Gets the value of the autocomplete property. * * @return * possible object is * {@link String } * */ public String getAutocomplete() { return autocomplete; } /** * Sets the value of the autocomplete property. * * @param value * allowed object is * {@link String } * */ public void setAutocomplete(String value) { this.autocomplete = value; } /** * Gets the value of the tree property. * * @return * possible object is * {@link String } * */ public String getTree() { return tree; } /** * Sets the value of the tree property. * * @param value * allowed object is * {@link String } * */ public void setTree(String value) { this.tree = value; } /** * Gets the value of the table property. * * @return * possible object is * {@link String } * */ public String getTable() { return table; } /** * Sets the value of the table property. * * @param value * allowed object is * {@link String } * */ public void setTable(String value) { this.table = value; } /** * Gets the value of the image property. * * @return * possible object is * {@link BooleanImageView } * */ public BooleanImageView getImage() { return image; } /** * Sets the value of the image property. * * @param value * allowed object is * {@link BooleanImageView } * */ public void setImage(BooleanImageView value) { this.image = value; } /** * Gets the value of the editor property. * * @return * possible object is * {@link Object } * */ public Object getEditor() { return editor; } /** * Sets the value of the editor property. * * @param value * allowed object is * {@link Object } * */ public void setEditor(Object value) { this.editor = value; } /** * Gets the value of the htmlEditor property. * * @return * possible object is * {@link Object } * */ public Object getHtmlEditor() { return htmlEditor; } /** * Sets the value of the htmlEditor property. * * @param value * allowed object is * {@link Object } * */ public void setHtmlEditor(Object value) { this.htmlEditor = value; } /** * Gets the value of the buttonType property. * * @return * possible object is * {@link String } * */ public String getButtonType() { return buttonType; } /** * Sets the value of the buttonType property. * * @param value * allowed object is * {@link String } * */ public void setButtonType(String value) { this.buttonType = value; } /** * Gets the value of the list property. * * @return * possible object is * {@link String } * */ public String getList() { return list; } /** * Sets the value of the list property. * * @param value * allowed object is * {@link String } * */ public void setList(String value) { this.list = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy