2015-04-22 19:40:22 +00:00
|
|
|
import de.dhbwstuttgart.typeinference.Menge;
|
2013-10-18 11:33:46 +00:00
|
|
|
import java.lang.Comparable;
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
2015-04-22 19:40:22 +00:00
|
|
|
public interface InterfaceGenerics<typ1 extends Menge & Comparable, typ2> extends Comparable<String>, Serializable<String>{
|
2013-10-18 11:33:46 +00:00
|
|
|
|
|
|
|
public typ1 compareTo(typ2 s);
|
|
|
|
|
|
|
|
}
|