While the code is growing big it is getting harder and harder to keep everything well organized. One thing I liked very much the time I developed in .NET was #region/#endregion which enabled to organize the code in logical groups and made further organization much easier.

Does anyone know whether there is any similar code organization possible in Java?

link|improve this question

3  
Regions are evil. I explicitly switched them off in the VS IDE. You need to think of your code and organize it so that the regions are never needed. – user151323 Sep 29 '09 at 13:14
feedback

6 Answers

up vote 3 down vote accepted

That is a feature of Visual Studio, not .NET. You would have to look into your Java IDE of choice and see what options they have.

link|improve this answer
feedback

The problem with regions is they can make files filled with thousands of lines of spaghetti code look like they are compact, clean and well organized at first glance, which they are not.

If a single file is getting unmanageable, think about how you've structured your classes and is there things you can refactor out into their own classes or methods?

I got very region happy when I started .net and now I don't think I've written one in years. They lost all value in my eyes the first time I opened a file with 5 regions, thought, "Hmm...simple enough" only to expand one and get a few thousand lines of code that made no sense whatsoever.

link|improve this answer
feedback

No, Java doesn't have anything like that. If anything you should get a better text editor that allows for arbitrary code folding or code folding based on comments.

link|improve this answer
feedback

This works in netbeans:

// <editor-fold defaultstate="collapsed" desc=" Region Name ">

... Enter Code Block here ...

// </editor-fold>
link|improve this answer
Enter <editor-fold defaultstate="collapsed" desc=" Common Packet "> after first "//" and </editor-fold> after second "//" – Dweep Sharma Apr 1 '11 at 4:50
feedback

In Java, you use packages and projects to organize your code.

link|improve this answer
I believe he was interested in orgainzing code within a single source file. I don't believe packages would be too helpful for that :) – luke Sep 29 '09 at 13:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.