While reading some android samples I usually see comments like
// BEGIN_INCLUDE (something)
// END_INCLUDE (something)
However, my current IDE — Android Studio 1.1 — can not recognise them (or maybe I do something wrong). I guess, they serve as some kind of code region marks (like
//<editor-fold desc="Region name">
// some code
//</editor-fold>
in AndroidStudio/IntellijIDEA), but such syntax is much like c++ preprocessor directives. So the question: should I know something important about these comments (besides obvious commenting function) that could improve my code in any way?