001package systems.dmx.core;
002
003import systems.dmx.core.model.TopicTypeModel;
004
005
006
007/**
008 * Specification of a topic type -- part of DMX's type system, like a class.
009 *
010 * @author <a href="mailto:jri@deepamehta.de">Jörg Richter</a>
011 */
012public interface TopicType extends DMXType {
013
014    // === Updating ===
015
016    void update(TopicTypeModel model);
017}