001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package dev.metaschema.databind.model;
007
008import dev.metaschema.core.model.IModelElement;
009
010/**
011 * A Metaschema model element bound to Java data.
012 * <p>
013 * This interface extends the core model element interface to provide access to
014 * the containing bound module.
015 */
016public interface IBoundModelElement extends IModelElement {
017
018  @Override
019  IBoundModule getContainingModule();
020}