aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/serialization/AnnotationWriter.java
blob: 9568c72f95da817ae3637c3d8c4dd3348e5c4c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.serialization;

import com.yahoo.document.annotation.Annotation;
import com.yahoo.document.annotation.AnnotationType;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 */
public interface AnnotationWriter {
    public void write(Annotation annotation);
}