aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/process/LinguisticsContext.java
blob: ddb30303b9d11181569b2a9aa57aa687e843b231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.process;

/**
 * The context in which some text is linguistically processes
 *
 * @author bratseth
 */
public class LinguisticsContext {

    private final String documentTypeName;

    public LinguisticsContext(String documentTypeName) {
        this.documentTypeName = documentTypeName;
    }

    public String documentTypeName() { return documentTypeName; }

}