Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 931e72b577ade26a1b086b7b7f6add8a6380ffd3 (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
/*******************************************************************************
 * Copyright (c) 2012 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0, which accompanies this distribution
 * and is available at https://www.eclipse.org/legal/epl-2.0/.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.core.tests.internal.resource.java.binmodel;

/**
 * This entire package is to be exported as binmodel.jar (in the *.java source folder).
 * If any changes are made to these classes, please re-export.
 */
public abstract class GenericSuperclass<T1, T2> {
	
	protected T1 genericField1;
	
	protected T2 genericField2;
	
	
	
	public GenericSuperclass() {
	
	}
	
	protected T1 genericMethod1() {
		return null;
	}
	
	protected T2 genericMethod2() {
		return null;
	}
	
	public boolean equals(String arg) {
		return true;
	}
	
	public int hashCode(String arg) {
		return 0;
	}
}

Back to the top