aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/Section.java
blob: 234915770f8b327daeadebdd11a77d3b898c38c1 (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
26
27
28
29
30
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.template;

import com.yahoo.vespa.hosted.node.admin.task.util.text.CursorRange;

/**
 * A section of a template text.
 *
 * @see Template
 * @author hakonhall
 */
abstract class Section {
    private final CursorRange range;
    private Form form;

    protected Section(CursorRange range) {
        this.range = range;
    }

    void setForm(Form form) { this.form = form; }

    /** Guaranteed to return non-null after FormBuilder::build() returns. */
    protected Form form() { return form; }

    protected CursorRange range() { return range; }

    abstract void appendTo(StringBuilder buffer);

    abstract void appendCopyTo(SectionList sectionList);
}