001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package dev.metaschema.core.model;
007
008/**
009 * Represents a loaded Metaschema module.
010 *
011 * @param <SELF>
012 *          the Java type of the module
013 */
014public interface IMetaschemaModule<SELF extends IMetaschemaModule<SELF>>
015    extends IModuleExtended<
016        SELF,
017        IModelDefinition,
018        IFlagDefinition,
019        IFieldDefinition,
020        IAssemblyDefinition> {
021  // No additional methods
022}