summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr222648/DataInterface.java
blob: 76e9b18f8720d2016f23b2263ecfa982c6c0ddc1 (plain)
1
2
3
4
5
6
7
8
9
package test;

public interface DataInterface<CONTENT> 
{
	
	public CONTENT getContent();
	
		
}