peer-at-code-parser-java/src/be/jeffcheasey88/peeratcode/parser/java/Annotation.java
2023-09-12 22:08:46 +02:00

25 lines
413 B
Java

package be.jeffcheasey88.peeratcode.parser.java;
import java.util.Map;
import be.jeffcheasey88.peeratcode.parser.Token;
public class Annotation{
private Token name;
private Map<Token, Value> values;
public Annotation(Token name){
this.name = name;
}
public Annotation(Token name, Map<Token, Value> values){
this(name);
this.values = values;
}
public Token getName(){
return name;
}
}