package com.htmlhifive.tools.wizard.library.model.xml; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p> * anonymous complex typeのJavaクラス。 * <p> * 次のスキーマ・フラグメントは、このクラス内に含まれる予期されるコンテンツを指定します。 * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.htmlhifive.com/schema/libraries}library-ref" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "libraryRef" }) @XmlRootElement(name = "default-libraries", namespace = "http://www.htmlhifive.com/schema/libraries") public class DefaultLibraries { @XmlElement(name = "library-ref", namespace = "http://www.htmlhifive.com/schema/libraries") protected List<LibraryRef> libraryRef; /** * Gets the value of the libraryRef property. * <p> * 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 <CODE>set</CODE> method for * the libraryRef property. * <p> * For example, to add a new item, do as follows: * * <pre> * getLibraryRef().add(newItem); * </pre> * <p> * Objects of the following type(s) are allowed in the list {@link LibraryRef } */ public List<LibraryRef> getLibraryRef() { if (libraryRef == null) { libraryRef = new ArrayList<LibraryRef>(); } return this.libraryRef; } }