/* * JFLAP - Formal Languages and Automata Package * * * Susan H. Rodger * Computer Science Department * Duke University * August 27, 2009 * Copyright (c) 2002-2009 * All rights reserved. * JFLAP is open source software. Please see the LICENSE for terms. * */ package gui.environment.tag; /** * A critical tag is used to mark a component whose "stability" requires that * the object which is part of an environment remain uneditable for the course * of an action. In short, those components with tags marked as EditorTag * must be deactivated. The intention is that an Environment will * detect the presence of critical tagged objects, and will not allow other * EditorTag objects to be selectable. * * @see gui.environment.Environment * @see gui.environment.tag.EditorTag * * @author Thomas Finley */ public interface CriticalTag extends Tag { }