mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 12e91605bf8901d98d56b8d8dc3a348d4b1ae935
20 lines
566 B
Java
20 lines
566 B
Java
public class TestSwitchSelect
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
switch (args.length) {
|
|
case 0:
|
|
return;
|
|
case 1:
|
|
System.out.println("");
|
|
<selection>System.out.println("");<caret></selection>
|
|
System.out.println("");
|
|
System.out.println("");
|
|
case 2:
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
}
|
|
}
|
|
} |