For 'case 1' below, the console prints the text as intended.
case 1: System.out.println ("Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text "); break;
However, I want to format the code so that, when reading the code, the second line of text is aligned with the first: so that the S in 'System' is aligned with the T of the 'Text' that is at the start of the second line of text. If I use the tab to indent the second line, the tab appears in the text that is printed to the console. Is there a way around this?