1 | /* |
2 | * Created on Sep 12, 2004 |
3 | * |
4 | * TODO To change the template for this generated file go to |
5 | * Window - Preferences - Java - Code Style - Code Templates |
6 | */ |
7 | package biz.xsoftware.buildtemplate; |
8 | |
9 | /** |
10 | * @author Dean Hiller |
11 | * |
12 | * TODO To change the template for this generated type comment go to |
13 | * Window - Preferences - Java - Code Style - Code Templates |
14 | */ |
15 | public class ExitImpl implements Exit { |
16 | |
17 | /** |
18 | * |
19 | */ |
20 | public ExitImpl() { |
21 | super(); |
22 | } |
23 | |
24 | /* (non-Javadoc) |
25 | * @see biz.xsoftware.buildtemplate.Exit#exit(int) |
26 | */ |
27 | public void exit(int code) { |
28 | System.exit(code); |
29 | } |
30 | |
31 | } |