001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package gov.nist.secauto.metaschema.databind.model;
007
008import gov.nist.secauto.metaschema.core.model.IModelElement;
009
010public interface IBoundModelElement extends IModelElement {
011
012  @Override
013  IBoundModule getContainingModule();
014}