View Javadoc

1   //
2   // 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 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2012.10.03 at 04:27:47 AM CEST 
6   //
7   
8   
9   package org.jdtaus.mojo.resource.model;
10  
11  
12  /**
13   * List of text language pairs.
14   * 
15   * Java content class for Texts complex type.
16   * <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 107)
17   * <p>
18   * <pre>
19   * &lt;complexType name="Texts">
20   *   &lt;complexContent>
21   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22   *       &lt;sequence>
23   *         &lt;element ref="{http://jdtaus.org/core/model/container}text" maxOccurs="unbounded"/>
24   *       &lt;/sequence>
25   *       &lt;attribute name="defaultLanguage" use="required" type="{http://www.w3.org/2001/XMLSchema}language" />
26   *     &lt;/restriction>
27   *   &lt;/complexContent>
28   * &lt;/complexType>
29   * </pre>
30   * 
31   */
32  public interface Texts {
33  
34  
35      /**
36       * Gets the value of the Text property.
37       * 
38       * <p>
39       * This accessor method returns a reference to the live list,
40       * not a snapshot. Therefore any modification you make to the
41       * returned list will be present inside the JAXB object.
42       * This is why there is not a <CODE>set</CODE> method for the Text property.
43       * 
44       * <p>
45       * For example, to add a new item, do as follows:
46       * <pre>
47       *    getText().add(newItem);
48       * </pre>
49       * 
50       * 
51       * <p>
52       * Objects of the following type(s) are allowed in the list
53       * {@link org.jdtaus.mojo.resource.model.Text}
54       * {@link org.jdtaus.mojo.resource.model.TextElement}
55       * 
56       */
57      java.util.List getText();
58  
59      /**
60       * Gets the value of the defaultLanguage property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link java.lang.String}
65       */
66      java.lang.String getDefaultLanguage();
67  
68      /**
69       * Sets the value of the defaultLanguage property.
70       * 
71       * @param value
72       *     allowed object is
73       *     {@link java.lang.String}
74       */
75      void setDefaultLanguage(java.lang.String value);
76  
77  }