KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > methodresolver > p1 > TheType


1 /*******************************************************************************
2  * Copyright (c) 2006 Mountainminds GmbH & Co. KG
3  * This software is provided under the terms of the Eclipse Public License v1.0
4  * See http://www.eclipse.org/legal/epl-v10.html.
5  *
6  * $Id: TheType.java 13 2006-08-28 20:07:41Z mho $
7  ******************************************************************************/

8 package methodresolver.p1;
9
10 import methodresolver.p2.*;
11
12 /**
13  * Test project for unit tests.
14  *
15  * @author Marc R. Hoffmann
16  * @version $Revision: 13 $
17  */

18 public class TheType {
19
20   class Inner { }
21   
22   /* test 0 */
23   TheType() { }
24   
25   /* test 1 */
26   public void meth1() { }
27   
28   /* test 2 */
29   public Object JavaDoc meth2(Object JavaDoc arg) { return null; }
30   
31   /* test 3 */
32   public java.lang.Object JavaDoc meth3(java.lang.Object JavaDoc arg) { return null; }
33   
34   /* test 4 */
35   public String JavaDoc meth4(String JavaDoc arg) { return null; }
36   
37   /* test 5 */
38   public java.lang.String JavaDoc meth5(java.lang.String JavaDoc arg) { return null; }
39   
40   /* test 6 */
41   public void meth6(Object JavaDoc[] arg) { }
42   
43   /* test 7 */
44   public void meth7(java.lang.Object JavaDoc[] arg) { }
45   
46   /* test 8 */
47   public AnotherTypeInAnotherPackage meth8() { return null; }
48   
49 }
50
Popular Tags