Latest Release
- Stable version 1.2.1 (15/07/10)
- Old stable version 1.1.2 (07/12/09)
- Nightly builds available to test
Events
- 9/07/2010 - RMLL (Bordeaux, France)
- 10-11/04/2010 - Loadays (Antwerp, Belgium)
- 6-7/02/2010 - FOSDEM (Brussels, Belgium)
- 20/09/2009 - LDAPCon 2009 (Portland, OR, USA)
- 10/07/2009 - RMLL (Nantes)
- 25/06/2009 - LinuxTag (Berlin)
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 |


