Package com.bbn.openmap.gui.menu

Source Code of com.bbn.openmap.gui.menu.SaveAsGifMenuItem

// **********************************************************************
//
// <copyright>
//
//  BBN Technologies
//  10 Moulton Street
//  Cambridge, MA 02138
//  (617) 873-8000
//
//  Copyright (C) BBNT Solutions LLC. All rights reserved.
//
// </copyright>
// **********************************************************************
//
// $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/gui/menu/SaveAsGifMenuItem.java,v $
// $RCSfile: SaveAsGifMenuItem.java,v $
// $Revision: 1.2.2.1 $
// $Date: 2004/10/14 18:26:56 $
// $Author: dietrick $
//
// **********************************************************************

package com.bbn.openmap.gui.menu;

import com.bbn.openmap.image.AcmeGifFormatter;

/**
* A JMenuItem that uses the MapHandler to find the MapBean and save
* an image of it in the GIF format.
*/
public class SaveAsGifMenuItem extends SaveAsImageMenuItem {
    public SaveAsGifMenuItem() {
        super("GIF", new AcmeGifFormatter());
    }
}
TOP

Related Classes of com.bbn.openmap.gui.menu.SaveAsGifMenuItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.