add validation step before code generation
[yosql.git] / yosql-codegen / src / main / java / wtf / metio / yosql / codegen / validation / RuntimeValidator.java
blob775813bb594bf07ffa0732a87575a8f32f6edc92
1 /*
2 * This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3 * directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4 * including this file, may be copied, modified, propagated, or distributed except according to the terms contained
5 * in the LICENSE file.
6 */
8 package wtf.metio.yosql.codegen.validation;
10 /**
11 * Validates the runtime environment before generating code.
13 @FunctionalInterface
14 public interface RuntimeValidator {
16 /**
17 * Validate the runtime environment.
19 void validate();