Search Results

1
vote
1answer
118 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
1answer
20 views

How to run a Maven JME project in netbeans ?

I have created a maven project with j2me-archetype using netbeans. It creates a project with a default MIDLet (SampleMIDlet.java). But when I try to run the project it says that No Main Class Foun …
3
votes

How can I prevent PermGen space errors in Netbeans?

It is because of constant class loading. Java stores class byte code and all the copnstants (eg string constants) in permament heap that is not garbage collected by default (which make sens …