/*
 * @topic T11358 Cloneable class demo II
 * @brief class StringWrapper -- makes shallow copy even worse
*/

package products;

public class StringWrapper {

    String text;

    public StringWrapper( String text )
    {
        this.text = text;
    }

    public String getText()
    {
        return text;
    }

    public void setText( String descr )
    {
        text = descr;
    }

}//class StringWrapper