/* * 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; /** * This is a tag that should be ascribed to an object that is "permanent," that * is, one that should not be able to be removed. * * @author Thomas Finley */ public interface PermanentTag extends Tag { }