1
vote
2answers
213 views
How to determine if a class is a subclass of other class ?
I'd like to check if a Class object represents a subclass of other class
for example
Class class1 = Class.forName("Class1");
Class class2 = Class.forName("Class2");
if(class1.isS …
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
555 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
537 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
105 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
165 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
102 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
2k views
How can I make this java generic cast ?
How can I make this java generic cast ?
public interface IField {
}
class Field implements IField { // package private class
}
public class Form {
private List<Field> f …
1
vote
4answers
506 views
Overloading methods by return type in java.
Can I collapse those two "getFields" methods into one using generics (the second method is intended to package private access) or should I rename the second one into something ugly like "getFieldP …
0
votes
2answers
137 views
Why doesn’t this generic interface stack work?
I have a bunch of generic interfaces and classes
public interface IElement {
// omited
}
class Element implements IElement {
// omited
}
public interface IElementList<E extends …
0
votes
4answers
240 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 ?
…
5
votes
3answers
373 views
Is there a posibility to break on every object reference in eclipse debugger ?
Suppose I have a class
public classs MyClass {
private Set<String> set = new HashSet<String>();
//and many methods here
}
is there a possibility …
1
vote
1answer
123 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 …
0
votes
4answers
416 views
How to create create a release package with maven ?
I build a desktop application using Maven2.
I'd like to make a release from time to time (just copy all the project's and third party jars into a single dir and generate a run.bat file). …
0
votes
2answers
220 views
Drools collect pattern problem
I have a rule LHS like that
when
$location : Location()
$cabinets : ArrayList() from collect ( Cabinet() from $location.elements() )
then
an when I print …
