Latest Release
- Release candidate 2.0rc1 (23/12/11)
- Beta version 2.0 (06/07/11)
- Stable version 1.2.1 (15/07/10)
- Nightly builds available to test
Events
- 10/10/2011 - LDAPCon 2011 (Heidelberg, Germany)
- 13/06/2011 - RMLL (Strasbourg, France)
- 9/07/2010 - RMLL (Bordeaux, France)
Community
Get help, contribute or find professional services ...
Find out more!
Search
Download | Read more... | Get started!
How to make beautiful code in LSC?This page describes some tips to make comprehensive code into LSC sources. A code style formatter profile is available for Eclipse, see instructions to use it at the bottom of this page. Indentation: tabulation or space?For indenting your code, configure your IDE to only use the tabulation character instead of spaces (some IDE simulates tabulation with spaces). Example/** * Indentation */ class Example { int[] myArray = { 1, 2, 3, 4, 5, 6 }; int theInt = 1; String someString = "Hello"; double aDouble = 3.0; void foo(int a, int b, int c, int d, int e, int f) { switch (a) { case 0: Other.doFoo(); break; default: Other.doBaz(); } } void bar(List v) { for (int i = 0; i < 10; i++) { v.add(new Integer(i)); } } } This codestyle should be applied on all structures: if, while, for, try/catch, etc. EclipseThe lsc-sample repository contains a profile for code style formatting for LSC, in misc/eclipse-code-style-formatting-profile.xml. To use this in Eclipse:
Tip: You can apply this profile to any existing code by selecting it and using the menu item |


