active questions tagged netbeans - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:04:24Zhttp://stackoverflow.com/feeds/tag/netbeanshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1947656/library-does-not-set-what-it-is0library does not set? what it is..adzyla2009-12-22T16:52:32Z2009-12-22T17:11:19Z
<p>D:\j2me\MobileApplication2\nbproject\build-impl.xml:56: Classpath to J2ME Ant extension library (libs.j2me_ant_ext.classpath property) is not set. For example: location of mobility/modules/org-netbeans-mobility-antext.jar file in the IDE installation directory.
BUILD FAILED (total time: 0 seconds)</p>
<p>can anyone help me? i am very new in this j2me and i am using netbeans</p>
http://stackoverflow.com/questions/693074/how-to-debug-php-with-netbeans-and-xdebug0How to debug PHP with netbeans and XdebugJon Winstanley2009-03-28T16:46:11Z2009-12-22T16:06:41Z
<p>I have recently tried to get going with <a href="http://www.google.co.uk/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fwww.netbeans.org%2F&ei=n1POSZS6HsONjAfRzKXcCQ&usg=AFQjCNGXEZrzV0QrmVNuy79PoebH7M4D7w&sig2=n-DjKReZuy7Us%5FMsWwNBbg" rel="nofollow">Netbeans</a> 6.5 after it rated so highly in the IDE review by Smashing magazine. <a href="http://www.smashingmagazine.com/2009/02/11/the-big-php-ides-test-why-use-oneand-which-to-choose/" rel="nofollow">http://www.smashingmagazine.com/2009/02/11/the-big-php-ides-test-why-use-oneand-which-to-choose/</a></p>
<p>My main reason for switching from Notepad++ is that I'd like to be able to debug my code and set through it.</p>
<p>I have followed the instructions about how to install xdebug from both the vendor <a href="http://xdebug.org/" rel="nofollow">http://xdebug.org/</a> and the netbeans web site. <a href="http://www.netbeans.org/kb/docs/php/debugging.html#gettingReady" rel="nofollow">http://www.netbeans.org/kb/docs/php/debugging.html#gettingReady</a> but to no avail.</p>
<p><strong>How is it done, has anyone else got debugging working in netbeans?</strong></p>
<p><em>(My setup is: Windows XP, Wamp server 2.0, PHP 5, Netbeans 6.5.1)</em></p>
http://stackoverflow.com/questions/1946643/why-does-xdebug-not-establish-connection-with-netbeans1Why does xdebug not establish connection with NetBeans?openfrog2009-12-22T14:22:28Z2009-12-22T15:52:09Z
<p>I try using xdebug with NetBeans to debug PHP. I start debug, and NetBeans waits for ever for a connection with xdebug. I have NetBeans 6.8 (latest version) with the latest MAMP package installed on my mac.</p>
<p>My php.ini looks like this:</p>
<pre><code>[xdebug]
;zend_extension="/Applications/MAMP/bin/php5/lib/php/extensions/no-debug-non-zts-20060613/xdebug.so"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
</code></pre>
http://stackoverflow.com/questions/1946394/how-to-create-executable-jar-file-with-netbeans0How to create executable .jar file with netbeanslandscape2009-12-22T13:33:12Z2009-12-22T13:41:27Z
<p>Hello.I'd like to make "double-click" cli application but still don't get how.
I know I should propably somehow edit manifest but that is all. I googled ofc. but no success.
Thanks for any tips.
Here is the output from build, run, and manifest:</p>
<pre><code>compile:
Created dir: /home/nick/NetBeansProjects/SemestralWork/dist
Building jar: /home/nick/NetBeansProjects/SemestralWork/dist/SemestralWork.jar
Not copying the libraries.
To run this application from the command line without Ant, try:
java -jar "/home/nick/NetBeansProjects/SemestralWork/dist/SemestralWork.jar"
jar:
BUILD SUCCESSFUL (total time: 1 second)
java -jar /home/nick/NetBeansProjects/SemestralWork/dist/SemestralWork.jar
Exception in thread "main" java.lang.NoClassDefFoundError: semestralwork/Main
Caused by: java.lang.ClassNotFoundException: semestralwork.Main
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:319)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:264)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332)
Could not find the main class: semestralwork.Main. Program will exit.
MY MANIFEST created with build:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.1
Created-By: 14.0-b08 (Sun Microsystems Inc.)
Main-Class: semestralwork.Main
Class-Path:
X-COMMENT: Main-Class will be added automatically by build
</code></pre>
http://stackoverflow.com/questions/1946079/how-can-i-see-in-netbeans-which-methods-an-object-knows0How can I see in Netbeans, which methods an object knows?openfrog2009-12-22T12:27:02Z2009-12-22T13:31:28Z
<p>I'm using NetBeans and PHP. For example, I insert this code:</p>
<pre><code><?php
try {
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
foreach($dbh->query('SELECT * from FOO') as $row) {
print_r($row);
}
$dbh = null;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
?>
</code></pre>
<p>Now, when I hover my mouse over the $dbh symbol, I get no information about it. Other IDEs tell me which methods an object understands. I'm sure NetBeans can do the same. How?</p>
http://stackoverflow.com/questions/1880587/enabling-assertions-in-netbeans1Enabling assertions in Netbeansdmindreader2009-12-10T12:14:14Z2009-12-22T00:38:40Z
<p>I wanna do something like </p>
<pre><code>java -enableassertions com.geeksanonymous.TestClass
</code></pre>
<p>How do I do this?</p>
http://stackoverflow.com/questions/1943010/whats-the-difference-between-project-folder-and-source-folder-in-netbeans0What's the difference between Project Folder and Source Folder in Netbeans?openfrog2009-12-21T22:20:01Z2009-12-21T22:20:01Z
<p>For me, both things are exactly the same. What's the point of these? Where's the difference between Project Folder and Source Folder?</p>
http://stackoverflow.com/questions/1827768/input-values-to-a-normal-java-se-program0Input values to a normal JAVA SE programJosh2009-12-01T17:43:34Z2009-12-21T13:03:06Z
<p>Hello everyone,
I'm new to JAVA and I'm currently trying out both Netbeans and Eclipse.</p>
<p>I'm confused about inputting values to my JAVA application.I see the output getting displayed on the output window in Eclipse ...but,I don't know how to input values ...??</p>
<p>In a normal console application in .Net,we can input values through the console window (Command Prompt Window) ,but I don't see any command prompt window coming up when I run my JAVA program to Input values or Type Anything.How do I do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1939317/netbeans-find-method-calls0NETBEANS find method calls stan2009-12-21T10:23:19Z2009-12-21T10:44:14Z
<p>In netbeans how can i find out where methods are being called - i have one particular method in a big project ad cant find where its being called</p>
<p>thanks</p>
http://stackoverflow.com/questions/1927700/want-to-use-dynamic-jasper-to-make-reports-with-my-db-mysql0 Want to use Dynamic Jasper to make Reports with my Db MYSQLSundhas2009-12-18T11:35:01Z2009-12-21T08:16:10Z
<p>Hey,
i want to Use Dynamic japser to create reports of my database i.e MYSQL.
Plus, i want to know that can i send attirbutes to dynamic jasper which a user is going to select from the front end based on XHTML MP
and then i want dyanamic jasper to make report on the selected attributs.
P.s I m sending selected attributes through servlet to Dynamic Jasper</p>
<p>Thanks
Sundhas</p>
http://stackoverflow.com/questions/1937282/is-there-an-free-alternative-to-mamp-pro0Is there an free alternative to MAMP PRO?openfrog2009-12-20T22:18:07Z2009-12-20T22:22:47Z
<p>NetBeans is recommending to use MAMP for Apache + MySQL + PHP on the Mac. There's a MAMP and a MAMP PRO. The MAMP is actually nothing more than a collection of open source libraries and stuff like PHP, MySQL, etc. in one big directory that goes to /Application/MAMP/. It comes with a little GUI to start/stop the server and to do some very basic settings. However, it is extremely limited. There's a MAMP PRO which does some more things but costs like $65. As I'm not making any money with my web dev I look for free solutions. </p>
<p>So is there something else that's open source / free, which does the same thing like MAMP Pro? starting / stopping PHP / Apache / MySQL on the Mac, configuring hosts, ports, etc.?</p>
http://stackoverflow.com/questions/1936889/how-to-configure-xdebug-to-open-source-file-in-netbeans-at-error-line0How to configure Xdebug to open source file in NetBeans at error line?openfrog2009-12-20T20:21:02Z2009-12-20T20:21:02Z
<p>Example for Textmate, to add to php.infi:</p>
<pre><code>xdebug.file_link_format = "txmt://open?url=file://%f&line=%l"
</code></pre>
<p>now my php.ini has no such entry with xdebug.file_link_format and I didn't try yet, but I am sure NetBeans won't open an file that has an error at the specified line number. So how can I set that up for NetBeans?</p>
http://stackoverflow.com/questions/1936792/where-can-i-download-xdebug-for-php-and-mac-os-x2Where can I download Xdebug for PHP and Mac OS X?openfrog2009-12-20T19:51:27Z2009-12-20T20:05:55Z
<p>I went to the xdebug site, but I can't find a mac download.
<a href="http://www.xdebug.org/download.php" rel="nofollow">http://www.xdebug.org/download.php</a></p>
<p>Did I miss something? NetBeans tells me to get xdebug for setting up an PHP development environment on the mac.</p>
http://stackoverflow.com/questions/1936712/do-i-really-need-the-java-development-kit-jdk-when-i-want-to-develop-php-with-n-1Do I really need the Java Development Kit (JDK) when I want to develop PHP with NetBeans on the Mac?openfrog2009-12-20T19:30:53Z2009-12-20T19:35:07Z
<p>The NetBeans people say that I need a <strong>Java Development Kit (JDK) 5 or 6</strong> when I want to develop PHP with NetBeans on the Mac...</p>
<p><a href="http://netbeans.org/kb/docs/php/configure-php-environment-mac-os.html" rel="nofollow">see: "To complete this tutorial, you need the following software and resources."</a></p>
<p>Now that sounds <em>very</em> strange to me. Must I <em>really</em> get that and spend some hours installing it? Why? What does Java have to do with PHP? Why's that a prerequisite?</p>
http://stackoverflow.com/questions/1936171/php-with-netbeans-or-eclipse-1PHP with Netbeans or Eclipse?openfrog2009-12-20T15:49:04Z2009-12-20T17:03:21Z
<p>I'm not looking for a "religious discussion" here, but I want to know the Pros and Cons of both development environments. I'm on the Mac, btw.</p>
http://stackoverflow.com/questions/1936250/netbeans-and-php-on-the-mac-how-to-set-it-up-1NetBeans and PHP on the Mac: How to set it up?openfrog2009-12-20T16:20:17Z2009-12-20T16:23:15Z
<p>I'm new to this and want to start coding PHP with NetBeans.</p>
<p>Is there a step-by-step instruction on how to set this up?</p>
http://stackoverflow.com/questions/1935460/how-to-improve-netbeans-for-ruby-slow-performance0How to improve Netbeans for ruby slow performance?Abd Shomad2009-12-20T10:20:53Z2009-12-20T10:20:53Z
<p>I am developing Ruby application with Netbeans because of its automatic code completion and its inline help system. </p>
<p>But when Netbeans try to autocomplete the source code while typing, the typing looks like stopped. </p>
<p>Is there any way to improve this experience? Maybe by disabling the code completion, inline help system, syntax highlighting, etc? </p>
http://stackoverflow.com/questions/1267403/which-netbeans-projects-files-should-go-into-source-control1Which NetBeans projects files should go into source control?petercardona2009-08-12T16:56:24Z2009-12-20T01:09:22Z
<p>We normally use Eclipse for a particular Java project, but recently I imported the project into NetBeans to use its dialog building features. Since I'll probably come back to this, I wanted to store the NetBeans project files into version control. However, I don't want to commit files that are "mine" versus "project", i.e., files with my own settings that would conflict with another user's.</p>
<p>NetBeans created the following structure in the top-level project area:</p>
<p>nbbuild<br>
nb-build.xml<br>
nbproject<br>
<various files><br>
configs<br>
private<br></p>
<p>Clearly nbbuild is build output, so that won't go in. The nb-build.xml file seems likely, as does most of nbproject. However, nbproject/private suggests it's "mine". Peeking at "configs", it's not clear to me if that's mine or project...</p>
<p>Anyone have some guidelines?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1932768/php-auto-indent-the-whole-code0php: auto indent the whole code?unknown (google)2009-12-19T12:16:41Z2009-12-19T23:21:35Z
<p>isnt there any software/plugin to netbeans/eclipse that auto indent the whole code after i've inserted it?</p>
<p>not just indent when i press ENTER for new function.</p>
<p>i want to paste in a code for example without indents and it will auto indent everything automatically since it can recognize what language is used.</p>
<p>should save a lot of time.</p>
http://stackoverflow.com/questions/1933016/netbeans-java-swing-set-window-size0NetBeans (Java Swing): Set window sizeJohan2009-12-19T14:19:12Z2009-12-19T15:40:36Z
<p>This is driving me crazy. When I set an appropriate size for my window in design-mode it just ignores this size and uses something else when I compile and run. Even tough I set the minimumSize and preferredSize it just ignores this... Why? How can I set my own size?</p>
http://stackoverflow.com/questions/1893138/how-can-i-check-the-compiler-and-runtime-in-netbeans1how can I check the compiler and runtime in netbeans??Johanna2009-12-12T11:36:09Z2009-12-18T15:19:52Z
<p>in one of my questions ,somebody said that I have to make sure that I'm not using compiler 1.6 and 1.5 runtime when i want to execute or debug my program,but I don't know how can i check compiler and runtime in NetBeans ,I am beginner with NetBeans.</p>
<p>my question was:
**I debug my project and the result was :</p>
<p>debug: Have no FileObject for C:\Program Files\Java\jdk1.6.0_02\jre\lib\sunrsasign.jar</p>
<p>Have no FileObject for C:\Program Files\Java\jdk1.6.0_02\jre\classes**</p>
<p>what should i do?</p>
<p>and he answers : you have to make sure that you are not using compiler 1.6 and 1.5 runtime when you want to execute or debug your program</p>
http://stackoverflow.com/questions/1927378/glassfish-cant-find-activerecord-jdbc-adapter0Glassfish can't find activerecord-jdbc-adapterKrzysztof Luks2009-12-18T10:13:06Z2009-12-18T14:44:21Z
<p>I'm trying to deploy simple Rails app on glassfish v3 and get the following error:</p>
<pre><code>org.jruby.rack.RackInitializationException: Could not find RubyGem activerecord-jdbc-adapter (>= 0)
</code></pre>
<p>Environment details:
App is packaged as war using warbler.
JRuby 1.4.0 installed locally, with activerecord-jdbc-adapter gem installed.
App is configured to use derby database (migration is successful):</p>
<pre><code>development:
host: localhost
adapter: jdbc
driver: org.apache.derby.jdbc.ClientDriver
url: jdbc:derby://localhost:1527/railsdb
username: rails
password: rails
</code></pre>
<p>System: Mac OS 10.6.2</p>
http://stackoverflow.com/questions/1928436/netbeans-utf8-encoding-mess-tool-to-search-for-source-files-according-to-its-en0netbeans utf8 encoding mess - tool to search for source files according to its encoding and to fix themopensas2009-12-18T14:14:53Z2009-12-18T14:14:53Z
<p>I have edited several files ISO-8859-15 encoded php source files with netbeans 6.7.1, but it converted them (without asking me!!!!) to utf-8,and I lost several german characters in that process...</p>
<p>I'm looking for a tool to find all the utf8 encoded files inside a directory (It's hard for me to tell which file has been broken).</p>
<p>I'd also need a tool to translate them</p>
<p>I'm trying to fix the whole thing with gedit, which recognizes and respects the charset of each file, but won't let me save utf8 files as iso-8859-15, because it says there characters that won't be converted...</p>
<p>so, I need:</p>
<ul>
<li><p>a tool o search for utf8 encoded files</p></li>
<li><p>an editor that allows me to go from one encoding to another</p></li>
<li><p>oh yes!, a way to tell netbeans not to mess with my files!!!</p></li>
</ul>
<p>(i have already tried with
editing /etc/netbeans.conf and adding -J-Dfile.encoding=UTF-8, or -J-Dfile.encoding=ISO-8859-15 with no luck)
<a href="http://wp.uberdose.com/2007/05/07/netbeans-and-utf-8/" rel="nofollow">http://wp.uberdose.com/2007/05/07/netbeans-and-utf-8/</a>
<a href="http://ditoinfo.wordpress.com/2007/02/26/netbeans-and-utf8-encoding-2/" rel="nofollow">http://ditoinfo.wordpress.com/2007/02/26/netbeans-and-utf8-encoding-2/</a></p>
<p>thanks a lot</p>
<p>edit:</p>
<p>(mmm I've just found this
<a href="http://wiki.netbeans.org/FaqI18nProjectEncoding" rel="nofollow">http://wiki.netbeans.org/FaqI18nProjectEncoding</a>
which says haw to modify characters encoding for a project, I'll give it a try
here it explains the mess netbeans did</p>
<blockquote>
<p>For a new IDE installation, UTF-8
encoding is the default for new
projects, as this encoding can handle
any Unicode characters, making it the
best choice for most people. When you
create a new project, the IDE
initially defaults to giving it the
same encoding as the last project on
which you set the encoding. If you
want another encoding, just change it
in the properties dialog.</p>
</blockquote>
<p>and I created a new project from existing php sources, I guess that's what went wrong...
)</p>
http://stackoverflow.com/questions/1689959/how-to-get-tomcat-5-5-to-shut-down-from-netbeans0How to get tomcat 5.5 to shut down from netbeansZoidberg2009-11-06T19:54:25Z2009-12-18T13:46:41Z
<p>I have to run tomcat 5.5 with netbeans 6.7. This is NOT my choice. I have some legacy software that I am not allowed to re-write and must be supported. The question is how do i get tomcat 5.5 to shut down properly using netbeans commands to shut it down? It starts up fine with a bat file I created, but when I try to stop it, netbeans tries to shut it down for about 2 minutes then gives me a failure message, and I have to then have to stop it by ending the process.</p>
<p>The bat file is pretty simple.</p>
<pre><code>set CATALINA_HOME=%cd%
tomcat5.exe
</code></pre>
<p>And could be my problem, I am not sure.</p>
http://stackoverflow.com/questions/1916094/resharper-like-addon-for-netbeans1ReSharper-like addon for NetBeansondrowan2009-12-16T17:03:06Z2009-12-17T23:05:21Z
<p>Hello,</p>
<p>is there any <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a>-like addon for NetBeans (preferably 6.8)? I'm using NetBeans for PHP.</p>
<p>I need following features:</p>
<ul>
<li>add some kind of code analysis</li>
<li>add some intelligent refactoring interface</li>
<li>enhance current code completion system</li>
<li>add more options to code highlighting</li>
</ul>
<p>Currently I'm using multiple external tools, which aren't exactly user-friendly and I'd like to, preferably, have it all in one tool. Perhaps some other PHP IDE have something like this.</p>
<p><strong>EDIT:</strong> Bit more details in my answer to Jani Hartikainen.</p>
http://stackoverflow.com/questions/552332/microsoft-intellimouse-scroll-wheel-not-working-with-netbeans-6-5-on-vista0Microsoft Intellimouse Scroll Wheel Not Working with Netbeans 6.5 on Vistanikblack2009-02-16T05:27:54Z2009-12-17T22:00:02Z
<p>I would appreciate any help with this problem, I have spent hours trying to diagnose it myself to no avail and haven't received a single response when posting it to the Netbeans user list and the bugs list. </p>
<p>Netbeans is an excellent IDE, and I have loved it since switching over from Eclipse a few months back. I do Java on Unix and Win32, and PHP on both, plus C on Linux (using Visual Studio on Windows as well). The problem is that I am far too accustomed to using the scroll wheel while coding now, and it doesn't work with Netbeans.</p>
<p>I am running Netbeans 6.5 on Vista (sp1) with a Microsoft Wireless Laser Mouse 6000. The scroll wheel refuses to work in any window, and mouse gestures on my laptop track pad also don't work (less important). My platform details are:</p>
<blockquote><pre>
<b>Software</b>:
Vista Sp1
Product Version: NetBeans IDE 6.5 (Build 200811100001)
Java: 1.6.0_03; Java HotSpot(TM) Client VM 1.6.0_03-b05
System: Windows Vista version 6.0 running on x86; Cp1252; en_AU (nb)
<b>Hardware</b>:
Mouse: Microsoft Wireless Lasermouse 6000
<b>Driver First Attempt:</b>
Mouse Driver: HID-compliant mouse
Driver provider: Microsoft
Date: 21/06/2006
Driver Version: 6.0.6001.18000
<b>Driver Second Attempt:</b>
Mouse Driver: Microsoft Wireless USB Mouse
Driver provider: Microsoft
Date: 26/11/2008
Driver Version: 6.31.230.0
</pre></blockquote>
<p>I found a very old bug report that said the problem was because Microsoft started enabling smooth scrolling by default, meaning the Input API would spit out smaller scroll values - but no matter how much I spin the wheel the document doesn't move. </p>
<p>I also tried rolling the driver back, re-installing and newest drivers etc. Would appreciate any pointers on this problem, I am sure other people are also experiencing it as I have found a lot of references to the same problem online, but without solutions. </p>
<p>I tried another Logitech mouse that I have (MX5000) and it's scrollwheel also doesn't work. I assigned page up and page down shortcuts to two of the extra mouse buttons, but it just isn't the same. Please please can somebody who is using Netbeans on Vista help me out with this, its killing me!</p>
<p>The funny thing is, this mouse and scroll wheel work fine with Netbeans on Linux..</p>
http://stackoverflow.com/questions/806873/which-is-the-best-ajax-framework-for-java-web-development5Which is the best ajax framework for java web development ?hib2009-04-30T13:23:36Z2009-12-17T17:55:25Z
<p>I am using struts2 for my java web application .</p>
<p>Now I want to use ajax for my client side user interface can anyone suggest me which is the best one to learn and implement ajax framework . </p>
<p>I have seen </p>
<ul>
<li><strong>jmaki</strong> , <strong>dojo</strong> , <strong>jQuery</strong></li>
</ul>
<p>and heard about <strong>vroom</strong> for netbeans IDE </p>
<p>thanks in advance .</p>
http://stackoverflow.com/questions/1910239/how-to-increase-mouse-scroll-wheel-speed-in-netbeans0How to increase mouse scroll wheel speed in NetBeans?smartj2009-12-15T20:40:15Z2009-12-17T17:45:25Z
<p>Loving the switch from Eclipse to NetBeans. Anyone know how to increase the number of lines scrolled using the mouse wheel in the editor window? Currently it only goes one at a time -- i'd like it to do at least three.</p>
http://stackoverflow.com/questions/1921192/in-netbeans-6-8-how-do-you-insert-an-image-and-change-the-size-of-it0in netbeans 6.8 how do you insert an image and change the size of it?Tuffy G2009-12-17T11:43:13Z2009-12-17T16:31:30Z
<p>hi.</p>
<p>in netbeans 6.8 how do you insert an image and change the size of it?
i have tried to insert an image into a label. this allows me to change the size of the label but not the size of the image.</p>
<p>thanks</p>
http://stackoverflow.com/questions/1922622/setting-maximum-width-using-matisse-gui-builder0Setting maximum width using Matisse GUI builderasalamon742009-12-17T15:42:41Z2009-12-17T15:42:41Z
<p>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 pixels. <a href="http://java.sun.com/javase/6/docs/api/javax/swing/GroupLayout.html" rel="nofollow">GroupLayout</a> supports this, we can specify the max size in the <a href="http://java.sun.com/javase/6/docs/api/javax/swing/GroupLayout.SequentialGroup.html#addComponent%28boolean,%20java.awt.Component,%20int,%20int,%20int%29" rel="nofollow">addComponent</a> method (alongside with minimum and preferred).</p>
<p>I'm using Netbeans and <a href="http://netbeans.org/features/java/swing.html" rel="nofollow">Swing GUI Builder (Matisse)</a>. I can set the textfield to be resizable, I can set the preferred size, but I've found no place to set the maximum size (and for the minimum). Here is the layout section of the property sheet:</p>
<p><img src="http://img690.imageshack.us/img690/3523/netbeanstfproplayout.png" alt="alt text"></p>
<p>Since maximum size cannot be set, Netbeans use <code>Short.MAX_VALUE</code> instead, so if a textfield is resizable it has no upper limit. I've also tried to set the <code>maximumSize</code> property of the component but it has no effect and will be ignored.</p>
<p>If I manually edit the <code>.form</code> file I can change the <code>max="32767"</code> part to <code>max="200"</code> and Netbeans generate correct code. Is there a way to set it without manually editing the <code>.form</code> file?</p>