Rev 15 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 15 | Rev 73 | ||
|---|---|---|---|
| 1 | /** |
1 | /** |
| 2 | * File created by Jimmy |
2 | * File created by Jimmy |
| 3 | * at 2003-dec-30 01:01:53 |
3 | * at 2003-dec-30 01:01:53 |
| 4 | */ |
4 | */ |
| 5 | package Macbeth.Utilities; |
5 | package Macbeth.Utilities; |
| 6 | 6 | ||
| 7 | /** |
7 | /** |
| 8 | * Some system properites. |
8 | * Some system properites. |
| 9 | * @author Jimmy |
9 | * @author Jimmy |
| 10 | */ |
10 | */ |
| 11 | public class MySystem { |
11 | public class MySystem { |
| 12 | 12 | ||
| 13 | /** |
13 | /** |
| 14 | * The system-specific line break string. |
14 | * The system-specific line break string. |
| 15 | */ |
15 | */ |
| 16 | public static final String lineBreak = System.getProperty("line.separator"); |
16 | public static final String lineBreak = System.getProperty("line.separator"); |
| 17 | 17 | ||
| 18 | } |
18 | } |
| 19 | 19 | ||