Hi, I am totally new to Java, currently working on a project(written by another programmer) using Borland JbuilderX as IDE, and using IBM JDK 1.3 as JDK, and other libraries include xalan, and etc.
precondition: the classpath is correct.
After solving all the problems, I still have 4 errors left. all the 4 errors converge to one issue, that is it can't find hasAttributes() method in org.w3c.dom.Node class.
What I'm wondering is, why other methods inside the org.w3c.dom.Node class can be called, but only cannot find certain methods?
this is the error I got: "XMLUtils.java": cannot resolve symbol: method hasAttributes ()in interface org.w3c.dom.Node at line 157, column 21 "XmlHelper.java": cannot resolve symbol: method importNode (org.w3c.dom.Node,boolean)in interface org.w3c.dom.Document at line 450, column 37 "XmlHelper.java": cannot resolve symbol: method normalize ()in interface org.w3c.dom.Node at line 600, column 14 "PipDescriptor.java": cannot resolve symbol: method getSystemId ()in interface org.w3c.dom.DocumentType at line 246, column 57
All the methods mentioned are belong to DOM level 2 except normalize()..