peer-at-code-parser-java/src/be/jeffcheasey88/peeratcode/parser/java/Variable.java
2023-07-08 17:30:45 +02:00

15 lines
307 B
Java

package be.jeffcheasey88.peeratcode.parser.java;
import java.util.ArrayList;
import java.util.List;
import be.jeffcheasey88.peeratcode.parser.Bag;
public class Variable extends JavaElement{
private List<Annotation> annotations;
public Variable(Bag bag){
this.annotations = new ArrayList<>();
}
}