summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/fieldoperation/BoldingOperation.java
blob: 74e69e047efcebb2d800fd6bf68d404c427d3f47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.fieldoperation;

import com.yahoo.schema.document.SDField;
import com.yahoo.vespa.documentmodel.SummaryField;

/**
 * @author Einar M R Rosenvinge
 */
public class BoldingOperation implements FieldOperation {

    private final boolean bold;

    public BoldingOperation(boolean bold) {
        this.bold = bold;
    }

    public void apply(SDField field) {
        SummaryField summaryField = field.getSummaryField(field.getName(), true);
        summaryField.addSource(field.getName());
        summaryField.addDestination("default");
        summaryField.setTransform(bold ? summaryField.getTransform().bold() : summaryField.getTransform().unbold());
    }

}