Converts String content to an XML object @webref xml:method @webBrief Converts String content to an XML object @param data the content to be parsed as XML @return an XML object, or null @throws SAXException @throws ParserConfigurationException @throws IOException @nowebr
(String data)
| 265 | * @nowebref |
| 266 | */ |
| 267 | static public XML parse(String data) throws IOException, ParserConfigurationException, SAXException { |
| 268 | return XML.parse(data, null); |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * @nowebref |
no outgoing calls