in my transformer i've the following method (i've simplified it to put here...):
public void startElement(String uri, String name, String raw,Attributes attr)throws SAXException {
}
so, i need to simply copy the element, i've only to edit the href attribute (I want to copy all the other attributes); the new value of href is in "newAttrValue", but is a String... how to put the new href value as an attribute together all the others?
Best Regards, Davide
