1 package de.dlr.shepard.common.neo4j.entities;
2
3 import de.dlr.shepard.context.semantic.entities.SemanticAnnotation;
4 import java.util.List;
5
6 public interface Annotatable {
7 List<SemanticAnnotation> getAnnotations();
8
9 void addAnnotation(SemanticAnnotation annotation);
10 }