Stop Eclipse from mangling my comments

前端 未结 5 1581
臣服心动
臣服心动 2020-12-29 23:53

Is there a way to stop eclipse from mangling the comments in my source files?

My main issue is stopping it from word wrapping them. I\'ve managed to configure eclips

5条回答
  •  无人及你
    2020-12-30 00:32

    You can use

     wrapped, this block will not format.

    /*
     * 
     * public class Activity extends ApplicationContext {
     *     protected void onCreate(Bundle savedInstanceState);
     *
     *     protected void onStart();
     *
     *     protected void onRestart();
     *
     *     protected void onResume();
     *
     *     protected void onPause();
     *
     *     protected void onStop();
     *
     *     protected void onDestroy();
     * }
     * 
    */

提交回复
热议问题