public class ComboBox extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://schemas.microsoft.com/wix/2006/wi}ListItem" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Property" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected List<ListItem> |
listItem |
protected String |
property |
Constructor and Description |
---|
ComboBox()
Default no-arg constructor
|
ComboBox(List<ListItem> listItem,
String property)
Fully-initialising value constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object that) |
List<ListItem> |
getListItem()
entry for ComboBox table Gets the value of the listItem property.
|
String |
getProperty()
Gets the value of the property property.
|
int |
hashCode() |
void |
setProperty(String value)
Sets the value of the property property.
|
String |
toString() |
ComboBox |
withListItem(Collection<ListItem> values) |
ComboBox |
withListItem(ListItem... values) |
ComboBox |
withProperty(String value) |
public ComboBox()
public List<ListItem> getListItem()
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 set
method for the listItem property.
For example, to add a new item, do as follows:
getListItem().add(newItem);
Objects of the following type(s) are allowed in the list
ListItem
public String getProperty()
String
public void setProperty(String value)
value
- allowed object is
String
public ComboBox withListItem(ListItem... values)
public ComboBox withListItem(Collection<ListItem> values)
public ComboBox withProperty(String value)
Copyright © 2019. All rights reserved.