2c2 < * @(#)TextAreaFigure.java --- > * @(#)URLContentProducer.java 31c31 < * @version 1.0 --- > * @version <$CURRENT_VERSION$> 36d35 < 39,40d37 < /** the specific URL */ < protected URL fURL = null; 41a39,40 > /** the specific URL */ > private URL fURL; 43c42,44 < /**Constructor for the URLContentProducer object */ --- > /** > * Constructor for the URLContentProducer object > */ 46d46 < 53c53 < fURL = url; --- > setURL(url); 56d55 < 69c68 < URL url = (fURL != null) ? new URL(fURL.toExternalForm()) : new URL(((URL)ctxAttrValue).toExternalForm()); --- > URL url = (getURL() != null) ? new URL(getURL().toExternalForm()) : new URL(((URL)ctxAttrValue).toExternalForm()); 84d82 < 92,94c90,92 < dw.writeBoolean((fURL != null)); < if (fURL != null) { < dw.writeString(fURL.toExternalForm()); --- > dw.writeBoolean((getURL() != null)); > if (getURL() != null) { > dw.writeString(getURL().toExternalForm()); 98d95 < 105,106c102 < public void read(StorableInput dr) < throws IOException { --- > public void read(StorableInput dr) throws IOException { 110c106,107 < fURL = new URL(dr.readString()); --- > setURL(new URL(dr.readString())); > } 111a109,115 > > public URL getURL() { > return fURL; > } > > protected void setURL(URL newURL) { > fURL = newURL;