aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/InpathTest/src1/Main.java
blob: 417fc68096cb17ca3c895f037f26cbf4a029bd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.io.IOException;

/*
 * Created on 30-Jul-03
 *
 * To change this generated comment go to 
 * Window>Preferences>Java>Code Generation>Code and Comments
 */

/**
 * @author websterm
 *
 * To change this generated comment go to 
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class Main {

	public static void main(String[] args) throws IOException {
		String propsName = (args.length > 0)? args[0] : "test.props";
		new test.TestProperties().load(propsName);
	}
}