Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

unchecked conversion Warnings!!

843793Feb 24 2005 — edited Feb 25 2005
1. how do i get rid of these unchecked conversion warning for

List<Element> children = new ArrayList<Element>(element.getChildren( "result" ));

where element.getChildren( "result" ) returns a list of Elements.

warning is :

warning: [unchecked] unchecked conversion
found : java.util.List
required: java.util.Collection<? extends org.jdom.Element>
List<Element> children = new ArrayList<Element>(element.getChildren( "result"
));

2. warning: [deprecation] setIndent(java.lang.String) in org.jdom.output.XMLOutputter has been deprecated
output.setIndent(" ");
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 25 2005
Added on Feb 24 2005
3 comments
334 views