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 * Text paired with corresponding language. 014 * 015 * Java content class for Text 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 76) 017 * <p> 018 * <pre> 019 * <complexType name="Text"> 020 * <simpleContent> 021 * <extension base="<http://www.w3.org/2001/XMLSchema>string"> 022 * <attribute name="language" use="required" type="{http://www.w3.org/2001/XMLSchema}language" /> 023 * </extension> 024 * </simpleContent> 025 * </complexType> 026 * </pre> 027 * 028 */ 029public interface Text { 030 031 032 /** 033 * Gets the value of the value property. 034 * 035 * @return 036 * possible object is 037 * {@link java.lang.String} 038 */ 039 java.lang.String getValue(); 040 041 /** 042 * Sets the value of the value property. 043 * 044 * @param value 045 * allowed object is 046 * {@link java.lang.String} 047 */ 048 void setValue(java.lang.String value); 049 050 /** 051 * Gets the value of the language property. 052 * 053 * @return 054 * possible object is 055 * {@link java.lang.String} 056 */ 057 java.lang.String getLanguage(); 058 059 /** 060 * Sets the value of the language property. 061 * 062 * @param value 063 * allowed object is 064 * {@link java.lang.String} 065 */ 066 void setLanguage(java.lang.String value); 067 068}