I've recently increase my use of the Profiler in Netbeans (6.7), this is a great tool.
I have a question however. When taking a heap dump, on the summary page (expect window) it is possible to 'find the biggest objects by retained size'.
What is this value and how is it used to analyze memory usage?
...
Hi, I'm using NetBeans IDE to create a system.
I created an instance of a class, then I want to access this instance from a different JSwing Form. I declared the class as public, but it still doesn't recognize the instance.
Any help?
Regards..
...
I am trying to figure out whether NetBeans 6.9.1 is having a problem with my machine or is it just slow. I recently switched to NetBeans about 2 weeks ago. So far, the only plug-ins that I have are the PHP ones.
My machine is a 2.4 Ghz Core 2 Duo Apple Macbook Pro with a 500 Gb 7200 RPM hard disk and 4 Gb RAM. Activity Monitor shows ...
I'm trying to insert some spacers into a layout on JPanel. I've got 3 buttons and I'd like to put something similar to Box.createRigidArea(new Dimension(10, 0)) between them. Netbeans 6.9.1 doesn't seem to have an option to create them - is that true? Is there some workaround?
...
I decided to take a look at Clojure and thought the best and easiest method for me would be to use Netbeans with the Enclojure plugin as I didn't want to have to learn Emacs at the same time. I installed Netbeans 6.9.1 together with the latest JDK using the bundled install (on Windows 7). All went smoothly. I then followed the instruct...
Did anybody know what is the funtion of include path in NetBeans?
i using netbeans 9.6.1
when we make new project there is will be two parent directory:
1. Source Files
2. Include Path
i didn't have idea what is include path,
can someone give explanation about this?
thanks in advance
...
How to make good commenting for PHP IDE (actually i using NetBeans)
my target is when i using a class or function there is will be a explanation about it's function, like when i typing
mysql_connect("param", "param");
there is will be a popup explanation about it function what it parameter and the output.
...
I recently started using NetBeans, and I can already see some advantages vs. Eclipse (like, for instance, NetBeans has a XUL plug-in for developing Firefox extensions; Eclipse doesn't). However, I've run in to an issue with the XML plug-in, specifically the auto-completion/validation by schema file part.
I've searched the web, and the ...
I understand how to get the attribute with:
public void hyperlinkUpdate(HyperlinkEvent e) {
e.getSourceElement().getAttributes().getAttribute(HTML.Attribute.COLOR);
How do I change that attribute?
...
The code formatting option that Netbeans has is not customizable enough for C/C++. For example it has options to add spaces to binary operators, but I cannot specify which. So putting it ON results in:
(a == b && b == c)
and putting it OFF results in:
(a==b&&b==c)
What I would ideally like is:
(a==b && b==c)
Any suggestions on h...
I am using Netbeans 6.8 with Windows OS 7.
I downloaded "glassfish-installer-v2.1.1-b31g-windows" executable jar file to my harddrive. I open this jar with Java Platform SE binary by right clicking the jar file and chosing "Open." A folder called "glassfish" is placed in the same folder as the jar. The glassfish server is now downloa...
I want to ignore .pyc files in the Netbeans project browser.
I think I found a way: TOOLS -> MISCELLANEOUS -> FILES .
Here is a section called: Files ignored by the IDE .
The field there is waiting for a regex describing the file pattern . The default value for that field is:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htacces...
When i run my project with the "Run main project" mode, my program writes the .txt file to my /home directory. I found this extremely odd, so I ran the program with "Debug main project" mode and it wrote the .txt file to the project directory. Is there a setting in options that will fix this so both modes will write the file to the proje...
I am trying to add aspectj to a maven project using java 6.0. Browsing around I found 2 maven plugins, none of which works the way I would expect.
The first one http://mojo.codehaus.org/aspectj-maven-plugin did not work at first through netbeans because I could not get the code to compile 5.0 or later source (it complained about annotat...
Both Eclipse and NetBeans throw errors about the use of anonymous functions. The error in NetBeans says The language feature not compatible with PHP version indicated in project settings
The code is working but the IDEs don't seem to like it. Should I be worried?
...
How do I clean up the toolbars (see the figure) from the UI of NetBeans?
...
I have a situation where our unit tests take a long time to execute for our business domain project as it sets up a database to a known state then proceeds to execute each step. I understand this can be done with "-Dmaven.test.skip=true" on the command line but wish to configure this within NetBeans for the project only, globally would b...
When using a JTabbedPane, how do you indent the tabs?
Swing default output:
------- --------- ------
| A | | B | | C |
------------------------------
| |
| |
| |
| |
| |
Desired indented o...
Hello all
I am using Codeigniter framework for PHP. I was wondering if there is a way to load methods in a Model for autocompletion using PHPDoc @property.
What I mean is ....
class abc_controller extends Controller {
/**
* @property Model1
*/
function func() {
$this->load->model("Model1"); // I am loading the model he...
Hello All..
I have my project uploaded in svn server with some specific URL.
Now I am using netbeans 6.8 integration of subversion by accessing Team -> Subversion -> Checkout option.
But in this scenario, my whole project including library as well as some .svn (hidden) files are also checking out into the server, which is affecting my...