001/*
002 * $Id: McIdasComponents.java,v 1.7 2011/03/24 16:06:32 davep Exp $
003 *
004 * This file is part of McIDAS-V
005 *
006 * Copyright 2007-2011
007 * Space Science and Engineering Center (SSEC)
008 * University of Wisconsin - Madison
009 * 1225 W. Dayton Street, Madison, WI 53706, USA
010 * https://www.ssec.wisc.edu/mcidas
011 * 
012 * All Rights Reserved
013 * 
014 * McIDAS-V is built on Unidata's IDV and SSEC's VisAD libraries, and
015 * some McIDAS-V source code is based on IDV and VisAD source code.  
016 * 
017 * McIDAS-V is free software; you can redistribute it and/or modify
018 * it under the terms of the GNU Lesser Public License as published by
019 * the Free Software Foundation; either version 3 of the License, or
020 * (at your option) any later version.
021 * 
022 * McIDAS-V is distributed in the hope that it will be useful,
023 * but WITHOUT ANY WARRANTY; without even the implied warranty of
024 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
025 * GNU Lesser Public License for more details.
026 * 
027 * You should have received a copy of the GNU Lesser Public License
028 * along with this program.  If not, see http://www.gnu.org/licenses.
029 */
030
031package edu.wisc.ssec.mcidasv.control;
032
033
034/**
035 * Holds a set of definitions concerning McIDAS data.
036 */
037public interface McIdasComponents {
038
039    /** Image frame component */
040    public static final String IMAGE = "McIdasComponents.image";
041
042    /** Graphics frame component */
043    public static final String GRAPHICS = "McIdasComponents.graphics";
044
045    /** Color Table frame component */
046    public static final String COLORTABLE = "McIdasComponents.colortable";
047    
048    /** Annotation frame component */
049    public static final String ANNOTATION = "McIdasComponents.annotation";
050    
051    /** Annotation frame component */
052    public static final String FAKEDATETIME = "McIdasComponents.fakedatetime";
053    
054    /** Array of dirty frame info */
055    public static final String DIRTYINFO = "McIdasComponents.dirtyinfo";
056    
057    /** Image dirty component */
058    public static final String DIRTYIMAGE = "McIdasComponents.dirtyimage";
059
060    /** Graphics dirty component */
061    public static final String DIRTYGRAPHICS = "McIdasComponents.dirtygraphics";
062
063    /** Color Table dirty component */
064    public static final String DIRTYCOLORTABLE = "McIdasComponents.dirtycolortable";
065
066}