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 * Reference to a text message. 014 * 015 * Java content class for MessageReference 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 787) 017 * <p> 018 * <pre> 019 * <complexType name="MessageReference"> 020 * <complexContent> 021 * <extension base="{http://jdtaus.org/core/model/container}ModelObject"> 022 * <attribute name="name" use="required" type="{http://jdtaus.org/core/model/container}Identifier" /> 023 * </extension> 024 * </complexContent> 025 * </complexType> 026 * </pre> 027 * 028 */ 029public interface MessageReference 030 extends org.jdtaus.mojo.resource.model.ModelObject 031{ 032 033 034 /** 035 * Gets the value of the name property. 036 * 037 * @return 038 * possible object is 039 * {@link java.lang.String} 040 */ 041 java.lang.String getName(); 042 043 /** 044 * Sets the value of the name property. 045 * 046 * @param value 047 * allowed object is 048 * {@link java.lang.String} 049 */ 050 void setName(java.lang.String value); 051 052}