2c2 < * @(#)TextAreaFigure.java --- > * @(#)ResourceContentProducer.java 30c30 < * @version 1.0 --- > * @version <$CURRENT_VERSION$> 32d31 < 35,36d33 < /** Description of the Field */ < protected String fResourceName = null; 37a35,36 > /** Description of the Field */ > private String fResourceName; 39c38,40 < /**Constructor for the ResourceContentProducer object */ --- > /** > * Constructor for the ResourceContentProducer object > */ 42d42 < 49c49 < fResourceName = resourceName; --- > setResourceName(resourceName); 52d51 < 65c64 < String resourceName = (fResourceName != null) ? fResourceName : (String)ctxAttrValue; --- > String resourceName = (getResourceName() != null) ? getResourceName() : (String)ctxAttrValue; 80d78 < 88c86 < dw.writeString(fResourceName); --- > dw.writeString(getResourceName()); 91d88 < 98,99c95 < public void read(StorableInput dr) < throws IOException { --- > public void read(StorableInput dr) throws IOException { 101c97,105 < fResourceName = (String)dr.readString(); --- > setResourceName (dr.readString()); > } > > public String getResourceName() { > return fResourceName; > } > > protected void setResourceName(String newResourceName) { > fResourceName = newResourceName;