Tagged Questions
2
votes
1answer
32 views
Reusing of components in Java not properly trimming un-reused ones
I have a javax.swing.JPanel called calcResPanel (using a java.awt.GridLayout with 1 column and indefinite (0) rows) which is to receive and display a set of BHSelectableLabels (which extend ...
0
votes
3answers
842 views
Why can I not remove a child element I've just found? NOT_FOUND_ERR
I'm building a script which has to patch XML files, including replacing one list of elements with another. The following function applies a patch (involving a possibly empty list of elements with the ...
0
votes
1answer
1k views
remove element in dom4j
<root>
<elm id="1"/>
<elm id="2"/>
<elm id="3"/>
<elm id="4"/>
</root>
I want to leave id="2" in the dom,
how can domj4 to remove the other three ?
result:
...