15 lines
307 B
Java
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<>();
|
|
}
|
|
}
|