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