How to Create a Region in eclipse like Visual Studio

eclipse, eclipse-plugin, eclipselink, m2eclipse

Solution

Got to long for a comment ..

There is code folding in Eclipse. You can find it in Window-> Preferences, then search for "folding". But it just wraps methods/functions/comments etc.

There is a plugin that used to work in Eclipse 4.2 named Coffee Bytes, but it is no longer maintained. So usage is at your own risk.

Lots of "buts", I know ;).

Problem

I am working with Eclipse tool and I am so curious to know about that how can I create `Region` in Eclipse like in `Visual Studio` we can create : ``` #region abc // Some Code #endregion abc ``` How to achieve the same thing in Eclipse.

Original source

Related problems