001// =================== DO NOT EDIT THIS FILE ====================
002// Generated by Modello 2.3.0,
003// any modifications will be overwritten.
004// ==============================================================
005
006package org.codehaus.modello.test.features;
007
008  //---------------------------------/
009 //- Imported classes and packages -/
010//---------------------------------/
011
012import org.codehaus.modello.test.features.other.PackageNameFeature;
013import org.codehaus.modello.test.features.other.SubInterfaceInPackage;
014
015/**
016 * <code>&lt;field xml.content="true"&gt;</code>: fields as XML
017 * content,
018 *         for every simple type.
019 *       
020 * 
021 * @version $Revision$ $Date$
022 */
023@SuppressWarnings( "all" )
024public class XmlContent
025    implements java.io.Serializable
026{
027
028      //--------------------------/
029     //- Class/Member Variables -/
030    //--------------------------/
031
032    /**
033     * Field longContent.
034     */
035    private XmlContentLong longContent;
036
037    /**
038     * Field longContentWithAttributes.
039     */
040    private XmlContentLongWithAttributes longContentWithAttributes;
041
042
043      //-----------/
044     //- Methods -/
045    //-----------/
046
047    /**
048     * Get the longContent field.
049     * 
050     * @return XmlContentLong
051     */
052    public XmlContentLong getLongContent()
053    {
054        return this.longContent;
055    } //-- XmlContentLong getLongContent()
056
057    /**
058     * Get the longContentWithAttributes field.
059     * 
060     * @return XmlContentLongWithAttributes
061     */
062    public XmlContentLongWithAttributes getLongContentWithAttributes()
063    {
064        return this.longContentWithAttributes;
065    } //-- XmlContentLongWithAttributes getLongContentWithAttributes()
066
067    /**
068     * Set the longContent field.
069     * 
070     * @param longContent a longContent object.
071     */
072    public void setLongContent( XmlContentLong longContent )
073    {
074        this.longContent = longContent;
075    } //-- void setLongContent( XmlContentLong )
076
077    /**
078     * Set the longContentWithAttributes field.
079     * 
080     * @param longContentWithAttributes a longContentWithAttributes
081     * object.
082     */
083    public void setLongContentWithAttributes( XmlContentLongWithAttributes longContentWithAttributes )
084    {
085        this.longContentWithAttributes = longContentWithAttributes;
086    } //-- void setLongContentWithAttributes( XmlContentLongWithAttributes )
087
088}