Deprecated API

Contents

Deprecated Methods

net.n3.nanoxml.IXMLElement.getAttribute(String)
As of NanoXML/Java 2.0.1, replaced by
nanoxml.XMLElement.addProperty(String,Object)
Use setAttribute instead.
nanoxml.XMLElement.addProperty(String,int)
Use setIntAttribute instead.
nanoxml.XMLElement.addProperty(String,double)
Use setDoubleAttribute instead.
nanoxml.XMLElement.enumeratePropertyNames()
nanoxml.XMLElement.getContents()
Use getContent instead.
nanoxml.XMLElement.getIntProperty(String,Hashtable,String)
Use getIntAttribute instead.
nanoxml.XMLElement.getProperty(String)
Use getStringAttribute instead.
nanoxml.XMLElement.getProperty(String,String)
Use getStringAttribute instead.
nanoxml.XMLElement.getProperty(String,int)
Use getIntAttribute instead.
nanoxml.XMLElement.getProperty(String,double)
Use getDoubleAttribute instead.
nanoxml.XMLElement.getProperty(String,String,String,boolean)
Use getBooleanAttribute instead.
nanoxml.XMLElement.getProperty(String,Hashtable,String)
Use getAttribute instead.
nanoxml.XMLElement.getStringProperty(String,Hashtable,String)
Use getStringAttribute instead.
nanoxml.XMLElement.getSpecialIntProperty(String,Hashtable,String)
Use getIntAttribute instead.
nanoxml.XMLElement.getSpecialDoubleProperty(String,Hashtable,String)
Use getDoubleAttribute instead.
nanoxml.XMLElement.getTagName()
Use getName instead.
nanoxml.XMLElement.removeProperty(String)
Use removeAttribute instead.
nanoxml.XMLElement.removeChild(String)
Use removeAttribute instead.
nanoxml.XMLElement.setTagName(String)
Use setName instead.
net.n3.nanoxml.XMLElement.getAttribute(String)
As of NanoXML/Java 2.1, replaced by