Questions tagged [netbeans-6.9]

It is the version 6.9 of Netbeans IDE for java application development.

NetBeans refers to both a platform framework for Java desktop applications, and an integrated development environment (IDE) for developing with Java, JavaScript, PHP, Python, Groovy, C, C++, Scala, Clojure, and others. The NetBeans IDE 7.0 no longer supports Ruby and Ruby on Rails.

The NetBeans IDE is written in Java and can run anywhere a JVM is installed, including Windows, Mac OS, Linux, and Solaris.

373 questions
4
votes
1 answer

What javac is Netbeans using?

My work project needs to be compiled and run under JDK1.5 and I'm on a Mac. I followed the instructions here to get 1.5 back on Snow Leopard, and it works fine when building from IntelliJ IDEA, or if I'm just in the same directory as the build.xml…
Felix
  • 699
  • 2
  • 9
  • 24
4
votes
2 answers

Setting maximum width using Matisse GUI builder

I'd like to create a GUI where some of the textfields are resizable horizontaly but maximum width is also specified. For instance the preferred width is 100 pixels, it can be bigger if the window is resized, but the maximum allowed width is 200…
asalamon74
  • 5,930
  • 9
  • 43
  • 59
3
votes
3 answers

Can't create PHP project from SVN Repository with Netbeans 7.0.1

I'm trying to create a PHP project from SVN Repository with Netbeans 7.0.1 but I can't. Context: There are three users, two uses Macs and I'm using Windows 7 64 bits. I needed to add -J-Dline.separator=LF to netbeans.conf to be able to work with…
polonskyg
  • 4,083
  • 9
  • 36
  • 87
3
votes
1 answer

Netbeans generates different JPA code in "JPA Controllers from enetity beans" and "JSF pages from entity beans"

There are two different JPA code generator wizards in Netbeans while using JPA entity beans in a Java EE and web project. The first wizard generates "JPA Controllers from enetity beans". The second wizard generates "JSF pages from entity beans",…
lionheart
  • 179
  • 2
  • 13
3
votes
2 answers

JPA Entity Creation - Objects vs. "Primitives"

I have a question for entity creation. Say I have the following tables create table "foo" ( "id" integer primary key, "name" varchar ); create table "bar" ( "id" integer primary key, "name" varchar, …
grantk
  • 3,698
  • 4
  • 25
  • 36
3
votes
1 answer

Installing SwingX in Netbeans

I have problem installing SwingX in my Netbeans IDE. I want to play with JXPanel and related components but i could not get right library and get it going. I tried to download swingx.jar but there is no valid link available in internet. I somehow…
Deepak
  • 6,322
  • 17
  • 63
  • 118
3
votes
1 answer

JAXB unmarshalling to entities

I am working on a project involving an XML stream and converting that data to persisted data in my Database. So far I have gotten to the point where I can consume my webservice, I generated some JAXB POJO's and have gotten unmarshaling of the XML…
grantk
  • 3,698
  • 4
  • 25
  • 36
3
votes
2 answers

Why Netbean ignore PHPUnit testsuite from the XML config?

I've setup netbean to use my config.xml file, and it works well except for the testsuites part that is completly ignored by netbean. It look like netbean try to execute this command: phpunit -c config.xml path/to/tests/ instead of just: phpunit -c…
FMaz008
  • 10,389
  • 16
  • 61
  • 90
3
votes
2 answers

How to test the performance of a java application?

I've created a stand alone java desktop application using Netbeans. I want a way to test the performance of my application. I need some tool with the help of which my application can be evaluated. I heard about Software metrics, is this related to…
Antrromet
  • 14,318
  • 9
  • 56
  • 73
3
votes
2 answers

Error with NetBeans Android plugin

I am currently developing an Android app and i am using Netbeans 6.9.1 and nbandroid 1.0 beta. I have installed Android SDK and configured everything but when i create a simple project and try to build it gives an error Creating output directories…
Keshan
  • 12,589
  • 10
  • 44
  • 71
3
votes
0 answers

HIbernate - "A Foreign Key referring from has the wrong number of column. Should be 2" error

I've been searching for the solution to this question for a while now. I have found a few threads talking about many-to-many relationships causing this issue, but I don't think that applies to my situation so I'm posting this in a new thread. I…
3
votes
1 answer

Is it not possible to call another JInternalFrame or JPanel [saved as NewJIF.java]from the main JFrame[saved as MainJFrame.java] in Netbeans?

I have created a MainJFrame.java in the package myproject using New project->java->java aplication and NewJIF.java in the same package. When a JButton clicked in MainJFrame.java i want JInterFrame to open using new NewJIF().setVisible(true); inside…
prayagupd
  • 27,100
  • 10
  • 130
  • 179
3
votes
3 answers

Does Netbeans version 6.9.1 support SOA plugin?

I need to create a BPEL project but I can't find SOA plugin to install it. Can someone tell how can I add SOA plugin to my Netbeans version?
palAlaa
  • 8,279
  • 28
  • 97
  • 158
3
votes
1 answer

Checkout from subversion and discard actual local changes in NetBeans

So I'm working on a project that is hosted on Google Code. Sometimes I use my desktop, other times I'm not home and I want to work on my laptop. To ease the development, I use subversion. To tell my problem, let's suppose the following…
s3v3n
  • 7,537
  • 5
  • 38
  • 55
3
votes
4 answers

Consuming a web service in an android application in localhost

I am trying to consume a web service that I created locally from an Android application. My problem is that in my Android app, at a certain point, I have to give an URL with parameters that looks like this :…
sharktiger
  • 75
  • 3
  • 10