|
105267
|
1 /** testjavacomp.java ---
|
|
|
2 *
|
|
|
3 * Copyright (C) 2009 Eric M. Ludlam
|
|
|
4 *
|
|
|
5 * Author: Eric M. Ludlam <eric@siege-engine.com>
|
|
|
6 *
|
|
|
7 * This program is free software; you can redistribute it and/or
|
|
|
8 * modify it under the terms of the GNU General Public License as
|
|
|
9 * published by the Free Software Foundation; either version 2, or (at
|
|
|
10 * your option) any later version.
|
|
|
11 *
|
|
|
12 * This program is distributed in the hope that it will be useful, but
|
|
|
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
15 * General Public License for more details.
|
|
|
16 *
|
|
|
17 * You should have received a copy of the GNU General Public License
|
|
|
18 * along with this program; see the file COPYING. If not, write to
|
|
|
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
20 * Boston, MA 02110-1301, USA.
|
|
|
21 */
|
|
|
22
|
|
|
23 package tests.testjavacomp;
|
|
|
24
|
|
|
25 class secondClass {
|
|
|
26 private void scFuncOne() { }
|
|
|
27 public void scFuncOne() { }
|
|
|
28 }
|
|
|
29
|
|
|
30
|
|
|
31 public class testjavacomp {
|
|
|
32
|
|
|
33 private int funcOne() { }
|
|
|
34 private int funcTwo() { }
|
|
|
35 private char funcThree() { }
|
|
|
36
|
|
|
37 class nestedClass {
|
|
|
38 private void ncFuncOne() { }
|
|
|
39 public void ncFuncOne() { }
|
|
|
40 }
|
|
|
41
|
|
|
42 public void publicFunc() {
|
|
|
43
|
|
|
44 int i;
|
|
|
45
|
|
|
46 i = fu// -1-
|
|
|
47 // #1# ( "funcOne" "funcTwo" )
|
|
|
48 ;
|
|
|
49
|
|
|
50 fu// -2-
|
|
|
51 // #2# ( "funcOne" "funcThree" "funcTwo" )
|
|
|
52 ;
|
|
|
53
|
|
|
54 secondClass SC;
|
|
|
55
|
|
|
56 SC.//-3-
|
|
|
57 // #3# ( "scFuncOne" )
|
|
|
58 ;
|
|
|
59
|
|
|
60 nestedClass NC;
|
|
|
61
|
|
|
62 // @todo - need to fix this? I don't know if this is legal java.
|
|
|
63 NC.// - 4-
|
|
|
64 // #4# ( "ncFuncOne" )
|
|
|
65 ;
|
|
|
66 }
|
|
|
67
|
|
|
68 } // testjavacomp
|