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 * Text paired with corresponding language. 14 * 15 * Java content class for Text 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 76) 17 * <p> 18 * <pre> 19 * <complexType name="Text"> 20 * <simpleContent> 21 * <extension base="<http://www.w3.org/2001/XMLSchema>string"> 22 * <attribute name="language" use="required" type="{http://www.w3.org/2001/XMLSchema}language" /> 23 * </extension> 24 * </simpleContent> 25 * </complexType> 26 * </pre> 27 * 28 */ 29 public interface Text { 30 31 32 /** 33 * Gets the value of the value property. 34 * 35 * @return 36 * possible object is 37 * {@link java.lang.String} 38 */ 39 java.lang.String getValue(); 40 41 /** 42 * Sets the value of the value property. 43 * 44 * @param value 45 * allowed object is 46 * {@link java.lang.String} 47 */ 48 void setValue(java.lang.String value); 49 50 /** 51 * Gets the value of the language property. 52 * 53 * @return 54 * possible object is 55 * {@link java.lang.String} 56 */ 57 java.lang.String getLanguage(); 58 59 /** 60 * Sets the value of the language property. 61 * 62 * @param value 63 * allowed object is 64 * {@link java.lang.String} 65 */ 66 void setLanguage(java.lang.String value); 67 68 }