001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:15 PM(kohsuke)-fcs 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2012.10.03 at 04:27:47 AM CEST 
006//
007
008
009package org.jdtaus.mojo.resource.model;
010
011
012/**
013 * Base complex type for model objects.
014 * 
015 * Java content class for ModelObject complex type.
016 * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at http://xml.jdtaus.org/1.0.x/jdtaus-core/jdtaus-core-schemas/jdtaus-container-1.1.xsd line 157)
017 * <p>
018 * <pre>
019 * &lt;complexType name="ModelObject">
020 *   &lt;complexContent>
021 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
022 *       &lt;sequence>
023 *         &lt;element ref="{http://jdtaus.org/core/model/container}documentation" minOccurs="0"/>
024 *       &lt;/sequence>
025 *       &lt;attribute name="modelVersion" type="{http://jdtaus.org/core/model/container}Version" />
026 *     &lt;/restriction>
027 *   &lt;/complexContent>
028 * &lt;/complexType>
029 * </pre>
030 * 
031 */
032public interface ModelObject {
033
034
035    /**
036     * Documentation of the object.
037     * 
038     * @return
039     *     possible object is
040     *     {@link org.jdtaus.mojo.resource.model.DocumentationElement}
041     *     {@link org.jdtaus.mojo.resource.model.Texts}
042     */
043    org.jdtaus.mojo.resource.model.Texts getDocumentation();
044
045    /**
046     * Documentation of the object.
047     * 
048     * @param value
049     *     allowed object is
050     *     {@link org.jdtaus.mojo.resource.model.DocumentationElement}
051     *     {@link org.jdtaus.mojo.resource.model.Texts}
052     */
053    void setDocumentation(org.jdtaus.mojo.resource.model.Texts value);
054
055    /**
056     * Gets the value of the modelVersion property.
057     * 
058     * @return
059     *     possible object is
060     *     {@link java.lang.String}
061     */
062    java.lang.String getModelVersion();
063
064    /**
065     * Sets the value of the modelVersion property.
066     * 
067     * @param value
068     *     allowed object is
069     *     {@link java.lang.String}
070     */
071    void setModelVersion(java.lang.String value);
072
073}