aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/pagetemplates/model/PageElement.java
blob: 036705d7081779c9b044dda5f97e18c63102b7b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.pagetemplates.model;

import com.yahoo.component.provider.Freezable;

/**
 * Implemented by all page template model classes
 *
 * @author bratseth
 */
public interface PageElement extends Freezable {

    /** Accepts a visitor to this structure */
    void accept(PageTemplateVisitor visitor);

}