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 * Class Thingy.
017 * 
018 * @version $Revision$ $Date$
019 */
020@SuppressWarnings( "all" )
021public class Thingy
022    extends SuperThing
023    implements java.io.Serializable, java.lang.Cloneable
024{
025
026      //--------------------------/
027     //- Class/Member Variables -/
028    //--------------------------/
029
030    /**
031     * Field someContent.
032     */
033    private String someContent;
034
035
036      //-----------/
037     //- Methods -/
038    //-----------/
039
040    /**
041     * Method clone.
042     * 
043     * @return Thingy
044     */
045    public Thingy clone()
046    {
047        try
048        {
049            Thingy copy = (Thingy) super.clone();
050
051            return copy;
052        }
053        catch ( java.lang.Exception ex )
054        {
055            throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
056                + " does not support clone()" ).initCause( ex );
057        }
058    } //-- Thingy clone()
059
060    /**
061     * Get the someContent field.
062     * 
063     * @return String
064     */
065    public String getSomeContent()
066    {
067        return this.someContent;
068    } //-- String getSomeContent()
069
070    /**
071     * Set the someContent field.
072     * 
073     * @param someContent a someContent object.
074     */
075    public void setSomeContent( String someContent )
076    {
077        this.someContent = someContent;
078    } //-- void setSomeContent( String )
079
080}