Class SubjectPreferencesConfig.Settings
- java.lang.Object
-
- de.businesscode.bcdui.subjectsettings.config.SubjectPreferencesConfig.Settings
-
- Enclosing class:
- SubjectPreferencesConfig
public static class SubjectPreferencesConfig.Settings extends java.lang.Object
Java-Klasse für anonymous complex type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Setting" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="Values"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Value" maxOccurs="unbounded"> <complexType> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> </extension> </simpleContent> </complexType> </element> </sequence> <attribute name="isMulti" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> <attribute name="preventEmpty" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> </restriction> </complexContent> </complexType> </element> <element name="SourceSetting"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="isMulti" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> <attribute name="defaults" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> <attribute name="preventEmpty" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="false" /> </restriction> </complexContent> </complexType> </element> </choice> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="caption" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SubjectPreferencesConfig.Settings.Setting
Java-Klasse für anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<SubjectPreferencesConfig.Settings.Setting>
setting
-
Constructor Summary
Constructors Constructor Description Settings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<SubjectPreferencesConfig.Settings.Setting>
getSetting()
Gets the value of the setting property.
-
-
-
Field Detail
-
setting
protected java.util.List<SubjectPreferencesConfig.Settings.Setting> setting
-
-
Method Detail
-
getSetting
public java.util.List<SubjectPreferencesConfig.Settings.Setting> getSetting()
Gets the value of the setting 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 setting property.For example, to add a new item, do as follows:
getSetting().add(newItem);
Objects of the following type(s) are allowed in the list
SubjectPreferencesConfig.Settings.Setting
-
-