summaryrefslogtreecommitdiff
path: root/test/cuchaz/enigma/inputs/constructors/Caller.java
blob: 75096ec187473b23eac00585fc16a5764431ed09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*******************************************************************************
 * Copyright (c) 2015 Jeff Martin.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser General Public
 * License v3.0 which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl.html
 * 
 * Contributors:
 *     Jeff Martin - initial API and implementation
 ******************************************************************************/
package cuchaz.enigma.inputs.constructors;

// none/b
public class Caller {
	
	// a()V
	public void callBaseDefault() {
		// none/a.<init>()V
		System.out.println(new BaseClass());
	}
	
	// b()V
	public void callBaseInt() {
		// none/a.<init>(I)V
		System.out.println(new BaseClass(5));
	}
	
	// c()V
	public void callSubDefault() {
		// none/d.<init>()V
		System.out.println(new SubClass());
	}
	
	// d()V
	public void callSubInt() {
		// none/d.<init>(I)V
		System.out.println(new SubClass(6));
	}
	
	// e()V
	public void callSubIntInt() {
		// none/d.<init>(II)V
		System.out.println(new SubClass(4, 2));
	}
	
	// f()V
	public void callSubSubInt() {
		// none/e.<init>(I)V
		System.out.println(new SubSubClass(3));
	}
	
	// g()V
	public void callDefaultConstructable() {
		// none/c.<init>()V
		System.out.println(new DefaultConstructable());
	}
}