/* * @topic T11364 Cloneable class demo III * @brief class StringWrapper */ 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