JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/Field.java

19 lines
332 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree;
2014-02-11 01:47:39 +00:00
2014-09-02 08:33:54 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefType;
2014-02-11 01:47:39 +00:00
public abstract class Field extends GTVDeclarationContext implements Generic {
2014-02-12 01:12:12 +00:00
private String name;
2014-02-12 01:12:12 +00:00
private GenericDeclarationList genericParameters;
2014-02-11 01:47:39 +00:00
public Field(String name, RefType type, int offset){
2016-12-02 00:23:01 +00:00
this.name = name;
}
2014-02-11 01:47:39 +00:00
}
2015-06-16 09:55:15 +00:00