xref: /OpenGrok/opengrok-indexer/src/test/resources/repositories/cvs_test/cvsroot/cvsrepo/Main.java,v (revision 9a303f1948b99409943e5b2e00a139a726dbc8d4)
1head     1.1;
2branch   1.1.1;
3access   ;
4symbols  start:1.1.1.1 example:1.1.1;
5locks    ; strict;
6comment  @# @;
7
8
91.1
10date     2008.09.04.16.09.41;  author austvik;  state Exp;
11branches 1.1.1.1;
12next     ;
13commitid        n6zbSZm81PKXitht;
14
151.1.1.1
16date     2008.09.04.16.09.41;  author austvik;  state Exp;
17branches ;
18next     ;
19commitid        n6zbSZm81PKXitht;
20
21
22desc
23@@
24
25
26
271.1
28log
29@Initial revision
30@
31text
32@class Main {
33
34    private String[] argv;
35
36    public Main(String[] argv) {
37        this.argv = argv;
38    }
39
40    private void dump() {
41        System.out.println("Started with the following arguments:");
42        for (String s : argv) {
43            System.out.print('[');
44            System.out.print(s);
45            System.out.print("] ");
46        }
47        System.out.println();
48    }
49
50    public static void main(String[] argv) {
51        Main main = new Main(argv);
52        main.dump();
53    }
54}
55@
56
57
581.1.1.1
59log
60@Add files
61@
62text
63@@
64