/*
 * Copyright (c) 2010 Rob Sim <robsim91 at users.sourceforge.net>.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package jmap.DataSources.Misc;

import java.awt.Graphics;
import java.awt.geom.Point2D;
import javax.swing.JPanel;
import jmap.Base.MapManager;
import jmap.Base.Viewer;
import jmap.DataSources.Builtin.Plugin;
import org.w3c.dom.Element;

/**
 *
 * @author rob
 */
public class ExportHTML extends Plugin{
    public ExportHTML(){
        super("Export HTML");
    }
    @Override
    public void draw(Graphics g, Point2D topLeft, int bottem, double xRatio, double yRatio){
        throw new UnsupportedOperationException("Not supported yet.");
    }
    @Override
    public JPanel getSidebarDisplay(Viewer viewer){
        throw new UnsupportedOperationException("Not supported yet.");
    }
    @Override
    public void configure(Element el, MapManager mapManager){
        throw new UnsupportedOperationException("Not supported yet.");
    }
}
