Class Options
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.Options
-
public class Options extends java.lang.ObjectJava class for options complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="options"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="option" type="{}option" maxOccurs="unbounded" minOccurs="0"/> <element name="init" type="{}init"/> </choice> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Options()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InitgetInit()Gets the value of the init property.java.util.List<Option>getOption()Gets the value of the option property.voidsetInit(Init value)Sets the value of the init property.
-
-
-
Method Detail
-
getOption
public java.util.List<Option> getOption()
Gets the value of the option property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the option property.For example, to add a new item, do as follows:
getOption().add(newItem);Objects of the following type(s) are allowed in the list
Option
-
-