8081828384858687888990
if (getPres(sty.setName("xlink:href"))) { URI src = sty.getURIValue(getXMLBase()); if ("data".equals(src.getScheme())) { imageSrc = new URL(null, src.toASCIIString(), new Handler()); } else { try { imageSrc = src.toURL();
112113114115116117118119120121122
321322323324325326327328329330331
URI src = sty.getURIValue(getXMLBase()); URL newVal; if ("data".equals(src.getScheme())) { newVal = new URL(null, src.toASCIIString(), new Handler()); } else { newVal = src.toURL(); }