Package org.openhab.core.config.core.dto
Class XmlConfigDescriptions
java.lang.Object
org.openhab.core.config.core.dto.XmlConfigDescriptions
- All Implemented Interfaces:
Serializable
@Generated(value="com.sun.tools.xjc.Driver",
comments="JAXB RI v2.3.7",
date="2023-12-22T04:04:51Z")
public class XmlConfigDescriptions
extends Object
implements Serializable
Java class for config-descriptions element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="config-descriptions"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="config-description" type="{https://openhab.org/schemas/config-description/v1.0.0}configDescription" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </element>
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the configDescription property.
-
Field Details
-
configDescription
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2023-12-22T04:04:51Z") protected List<XmlConfigDescription> configDescription
-
-
Constructor Details
-
XmlConfigDescriptions
public XmlConfigDescriptions()
-
-
Method Details
-
getConfigDescription
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2023-12-22T04:04:51Z") public List<XmlConfigDescription> getConfigDescription()Gets the value of the configDescription 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
set
method for the configDescription property.For example, to add a new item, do as follows:
getConfigDescription().add(newItem);
Objects of the following type(s) are allowed in the list
XmlConfigDescription
-