2014-06-25 17:31:04 +02:00
|
|
|
package mycompiler.myclass;
|
|
|
|
|
|
|
|
import java.util.Vector;
|
|
|
|
|
|
|
|
import mycompiler.mytype.GenericTypeVar;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stellt eine Deklarations-Liste von Generischen Variablen dar.
|
|
|
|
* Kann vor Methoden und Klassen auftauchen. (<....>)
|
|
|
|
* @author janulrich
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class GenericDeclarationList extends Vector<GenericTypeVar>{
|
|
|
|
|
2014-07-09 10:52:23 +02:00
|
|
|
public GenericDeclarationList(Vector<GenericTypeVar> vector, int offset) {
|
2014-06-25 17:31:04 +02:00
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|