What are useful php annotations for Netbeans code completition? I'm already familiar with @return, @param and @throws, but are there any others?
For example, can I set which keys will returned ArrayObject have? In this example, I'd like IDE to suggest me foo and bar after I type get()->. Is it even possible? If so, how?
/**
* @ ???
*...
Are there any JavaScript editors that can validate JavaScript syntax on the fly? Things like missing brackets, etc.
...
Hi,
I am trying to find out the great Eclipse feature of 'marking all occurrences of selected word in the right-scroller' in NetBeans 6.9. So I will be able to click the occurrence quickly. Same as there are marks for functions by default in NetBeans.
I am not native english speaker, so maybe the right naming of this feature will be en...
I need to develop an interior designing software :)
Much like a virtual room designing software.
There will be pre-designed 3D objects and they can dragged on to the room. You can change the room size etc... Much like a conventional home designing software :) After the room is designed i should be able to to make the user walk through...
Visual Studio debugger automatically recognizes the types of pointers and shows the value of the variable or object pointed to by the pointer. Example screenshot for Ruby debugger here: http://www.rubyinside.com/wp-content/uploads/2008/03/jruby-debugger.jpg This applies to debugger tooltips, watch windows, etc. I never have to see t...
I am using GNU/Linux (Ubuntu + Gnome).
I have been using netbeans on windows since a long time and on Linux I prefer to use vi or emacs.
Now my problem is I want to totally migrate into Linux for all my development works but i have seen that netbeans do not has that appealing look as it used to have on windows. Same with eclipse. I kno...
I would like to use emacs instead of Netbeans which gets too bloated on my computer. I already got JDEE, I did not digg it, but it looks like it lakes :
Classes testing : run a class which has a main method, but which is not the main class of the project
Maven integration : this is a minor wish as Netbeans doesn't support maven that we...
Example:
protected $_labelName = null;
Should generate
public function getLabelName()
{
$this->_labelName;
}
public function setLabelName($labelName)
{
$this->_labelName = $labelName;
return $this;
}
But it is generates
public function get_labelName()
{
return $this->_labelName;
}
public function set_labelName($_...
Hi,
i have been creating a customized Eclipse Version with some specific Plugins (CDT, AVR-Development) and after configuring and testing successfully on my machine, I zipped the eclipse-Folder and send it to my client to install onto the target machine.
But when he tries to start eclipse he gets the following error in the Logfile:
...
Possible Duplicate:
Any good PHP IDE, preferably free or cheap?
Recently i change my windows to gentoo-linux. And don't know wich IDE change for web-dev.
In windows i use PHPDesigner.
Need autocomplete, projects and etc.
...
Possible Duplicate:
Best C++ IDE or Editor for Windows
What is a very simple lightweight and free IDE for developing C++ with DirectX? I use Dev-C++ for simple C/C++ programs and like it very much. However, It does not seem to support DirectX. I have also tried Express edition of Microsofts C++ environment. I was wodering i...
I'm working on a Scala project and got tired of struggling with Eclipse. It became very slow and crashed from time to time (Don't know if that is the case with everyone?). Anyway, an old post (also this one and this other) convinced me to try IntelliJ IDEA and it has been a pleasant change. The two IDE are not too different, but I will n...
NoSQL are an alternative to RDBMS, that work well with simple data models holding vast volumes of data. MongoDB, Google's BigTable, Dojo's Persevere, Amazon's Dynamo, Facebook's Cassandra are some examples. Could you state your favorite application/IDE that can manage (i.e. insert or query data) such databases?
...
I've always used the built-in IDE, but I've been gone from Flash since ActionScript 2.0 in Flash MX... I'm coming back to Flash, and I notice there's a number of IDE's (some of which cost more than the Flash upgrade). So... question for Flash/Actionscript 3 developers -- which IDE to use, if at all?
...
Hi all,
I know this is probably a question that is asked a ton on here but I haven't been able to find exactly what I'm looking for. I'm a JAVA developer that is learning Python and Django and I'm looking for a good development environment. I would like to be able to edit python code, css, html and javascript all in the same editor i...
I'm learning to use Netbeans and for my intro pet projects, I don't want it storing widget properties in a properties file. For example, by default, it puts the text property of a JLabel into a properties file. There's a checkbox to disable it per property but is there a way to do that globally? And is there a way to easily disable th...
Hello!
Do you know of any extension (desired free) for VS (or VCPP) 10 that adds C projects productivity (i.e. templates, headers control, syntax highlighting etc.)?
Thanks
...
Sorry to ask such a general question as I'm sure a lot of questions have been asked before about IDE's... but I specifically have major problems running IDE's that are written in non-native languages for Windows (like Java), NetBeans gave me horrible performance and I just tried Aptana and got a similar issue...
I have a fast computer (...
I know this isn't a programming related question but if I ask this at superuser I bet I will get 0 answers since that crowd is unlikely to use programming software. So I rather ask here where people actually use this IDE. Please don't close the question or move it elsewhere.
I just bought a new monitor that's rather large and I am havin...
When I'm writing comments in my code, I often forget to add the initial space after the comment identifier.
'this is a comment
when really it is supposed to be
' this is a comment
I realize this is quite trivial, and you could simply say "just add the damn space you idiot", but I'd really like to automate this so that I just ...