<html>
<body>
Hi there:<br><br>
I just got the JDOM b10 downloaded and realized that the Element class
implements the Parent Interface.&nbsp; I have the following codes that
will not compile:<br><br>
rootElement.addContent(new
Element(&quot;Course&quot;).addContent(&quot;Math&quot;));<br><br>
Where the rootElement is already defined as the root element and I am
trying to add another element called Course and apply it's content.&nbsp;
<br><br>
The error message I received is something like....<br>
cannot resolve symbol<br>
symbol&nbsp; : method addContent (org.jdom.Parent)<br>
location: class org.jdom.Element<br><br>
<br>
If I break this one statement into the following then everything
works:<br><br>
Element course = new Element(&quot;Course&quot;);<br>
course.addContent(&quot;Math&quot;);<br>
rootElement.addContent(course);<br><br>
The same one-liner code use to work in Beta 9 version.&nbsp; Can anyone
offer me some hints or possible fixes using Beta 10.<br><br>
Best, Joseph<br>
jyin@qualcomm.com<br>
<x-sigsep><p></x-sigsep>
=====================================================================
<br>
<font size=4><b><i>Joseph C. Yin</i></b>, <b><i>MSBA (IS
Auditing)</i></b><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab></font><b><i>Location:
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>S-204A<br>
Staff Programmer
Analyst<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>&nbsp;&nbsp;
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>Phone#<x-tab>&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>(858)
651-0316 <br>
QUALCOMM Incorporated.<x-tab>&nbsp;&nbsp;</x-tab>&nbsp;&nbsp;
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>Fax&nbsp;&nbsp;&nbsp;
#
<x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>(858)
658-1011<br>
IT Product Development
Services<x-tab>&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab><x-tab>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</x-tab>EMail
: jyin@qualcomm.com <br>
</i></b><font size=4 color="#0000FF">&quot;<b><i>TEAM</i></b> -
<b><i>T</i></b>ogether <b><i>E</i></b>veryone <b><i>A</i></b>ccomplishes
<b><i>M</i></b>ore&quot; <br>
</font><font size=4>==================================================</font><font size=4 color="#FF0000">
</font></body>
</html>