anyAttribute.setAnyAttribute(new QName("baz"), "value 2");
return asString(anyAttribute);
}
protected String getMarshalledListAttribute() throws JAXBException {
ObjectFactory objectFactory = new ObjectFactory();
ListAttribute listAttribute = objectFactory.createListAttribute();
listAttribute.setAnyAttribute(new QName("http://ws.apache.org/jaxme/test/misc/wildcards/2", "foo"), "value 1");
listAttribute.setAnyAttribute(new QName("http://ws.apache.org/jaxme/test/misc/wildcards", "bar"), "value 2");
return asString(listAttribute);
}