Class MoldList
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.collectionbrowser.MoldList
-
public class MoldList extends java.lang.ObjectJava class for mold-list complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="mold-list"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="mold" type="{http://www.hybris.com/cockpitng/config/collectionbrowser}mold" maxOccurs="unbounded"/> </sequence> <attribute name="default-mold" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringdefaultMoldprotected java.util.List<Mold>mold
-
Constructor Summary
Constructors Constructor Description MoldList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDefaultMold()Gets the value of the defaultMold property.java.util.List<Mold>getMold()Gets the value of the mold property.voidsetDefaultMold(java.lang.String value)Sets the value of the defaultMold property.
-
-
-
Field Detail
-
mold
protected java.util.List<Mold> mold
-
defaultMold
protected java.lang.String defaultMold
-
-
Method Detail
-
getMold
public java.util.List<Mold> getMold()
Gets the value of the mold 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 mold property.For example, to add a new item, do as follows:
getMold().add(newItem);Objects of the following type(s) are allowed in the list
Mold
-
getDefaultMold
public java.lang.String getDefaultMold()
Gets the value of the defaultMold property.- Returns:
- possible object is
String
-
setDefaultMold
public void setDefaultMold(java.lang.String value)
Sets the value of the defaultMold property.- Parameters:
value- allowed object isString
-
-