1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package dev.metaschema.databind.model;
7   
8   import dev.metaschema.core.model.IDefinition;
9   
10  /**
11   * A Metaschema definition (flag, field, or assembly) bound to Java data.
12   * <p>
13   * This interface combines the bound model element capabilities with the core
14   * Metaschema definition interface.
15   */
16  public interface IBoundDefinition extends IBoundModelElement, IDefinition {
17    // no additional methods
18  }