Add generalized FileGenerator interface
[yangtools.git] / plugin / plugin-generator-api / src / main / java / org / opendaylight / yangtools / plugin / generator / api / CharSeqGeneratedTextFile.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.plugin.generator.api;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.io.IOException;
13 import java.io.Writer;
14 import org.eclipse.jdt.annotation.NonNullByDefault;
15
16 /**
17  * A generated text file with a body is available as a {@link CharSequence}.
18  */
19 @NonNullByDefault
20 final class CharSeqGeneratedTextFile extends AbstractGeneratedTextFile {
21     private final CharSequence body;
22
23     CharSeqGeneratedTextFile(final GeneratedFileLifecycle lifecycle, final CharSequence body) {
24         super(lifecycle);
25         this.body = requireNonNull(body);
26     }
27
28     @Override
29     protected void writeBody(final Writer output) throws IOException {
30         output.append(body);
31     }
32 }