Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » Label Indentation / Spaces after Comment
Label Indentation / Spaces after Comment [message #1781596] Fri, 09 February 2018 09:07
Hyeonwoo O is currently offline Hyeonwoo OFriend
Messages: 2
Registered: February 2018
Junior Member
Is there any way to configure label: indentation and white space after // tags?

For example, I want change this code

public class MainClass {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // comment
        int num = 0;
        label: while (num <= 10) {
        ...
        }
    }
}


to

public class MainClass {
    public static void main(String[] args) {
        System.out.println("Hello World!"); //comment
        int num = 0;
label: while (num <= 10) {
        ...
        }
    }
}


I couldn't find any options about this.
Previous Topic:The Eclipse executable launcher was unable to locate its companion shared library.
Next Topic:Help requested with loading reference libraries
Goto Forum:
  


Current Time: Thu Apr 18 23:08:41 GMT 2024

Powered by FUDForum. Page generated in 0.03347 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top