DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10934>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10934

The sequence of create an attribute and the element  does matter





------- Additional Comments From [EMAIL PROTECTED]  2002-07-18 19:56 -------
not quite sure what you mean here, can you create an Attribute without an 
instance of an Element to create it in? Or do you mean that when you create 
attribtutes, they do not appear in the order they were created in the code ie:

Element e=aDocument.createElement("elem");
e.setAttribute("attr1", "1");
e.setAttribute("attr2", "2");

<elem attr2="2" attr1="1"/>

in this case, the api does not provide that the attributes will appear in an 
element in an special order, as they are a kind of map in which order would be 
irrelevant. Hence no method to get an attribute by index.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to