| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-fcs
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2018.09.10 at 08:01:16 AM PDT
- //
- package magoffin.matt.ieat.domain;
- /**
- * Java content class for ui-meta-support complex type.
- * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/tom/workspace/iEat/hyperjaxb2-build/src/main/resources/ui.xsd line 172)
- * <p>
- * <pre>
- * <complexType name="ui-meta-support">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="meta" type="{http://msqr.us/xsd/ieat}ui-parameter" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface UiMetaSupport {
- /**
- * Gets the value of the Meta 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 Meta property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getMeta().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link magoffin.matt.ieat.domain.UiParameter}
- *
- */
- java.util.List getMeta();
- }
|