2
votes
2answers
1k views
How to reliably get row index in JTable from MouseEvent ?
I want to find out at whih row of JTable the user clicked.
How to do it ?
…
1
vote
1answer
535 views
Button text in JTable renderer not visible. Why ?
I have a custom cell renderer set in JTable and it works but instead an "x" visible on buttons being table cells I see "..." (three dots). What did I miss ??
/******************** …
6
votes
3answers
523 views
Why does my application still run after closing main window ??
If I make a JFrame like this
public static void main(String[] args) {
new JFrame().setVisible(true);
}
then after closing the window the appication doesn't s …
1
vote
2answers
97 views
How can I validate parameters without creating a separate dialog?
I'm going to make an application (in Swing) that uses a tree to visualize a data structure (JTree). A tree will be on the left side of a window. The user will be able to browse a tree. The paramet …
1
vote
1answer
155 views
Is there a free (LGPL, BSD, etc) implementation of XML editor swing component.
I need a JComponent thad enables editing xml documents so I can embed it in my application.
It doesnt need to bee fancy.
Plain text editing and highlighting would bee enough.
…
1
vote
2answers
100 views
Is there a free (LGPL< BSD, etc. ) RDF editor component for swing ?
I look for a JComponenet based RDF editor which I could embed in my application?
It does'n need to be fancy .
Thanks in advance.
…
0
votes
4answers
234 views
Do I need to free Swing components before letting them get garbage collected ?
Wnen I use external resources such as files or DB connection I need to close them before I let them go.
Do I need to do the same thing with Swing components ? If yes then how ?
…
1
vote
1answer
114 views
How to select nodes in Netbeans Visual Library?
I create a graph based visual applicaion using a Netbens Visual Library.
Can somebody post a code sample that enables a selection of nodes with mouse clicks (and Ctrl key fo multiple select …
2
votes
3answers
201 views
Why do my JDialogs leak ?
I have a JFrame and I open a JDialog from it and another JDialog from that dialog - which menas i have 3 windows visible (JFrame, JDialog1, Jdialog2).
When I close both dialogs and run a ga …
