001/*
002 * Copyright 2010-2015 Institut Pasteur.
003 * 
004 * This file is part of Icy.
005 * 
006 * Icy is free software: you can redistribute it and/or modify
007 * it under the terms of the GNU General Public License as published by
008 * the Free Software Foundation, either version 3 of the License, or
009 * (at your option) any later version.
010 * 
011 * Icy is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
014 * GNU General Public License for more details.
015 * 
016 * You should have received a copy of the GNU General Public License
017 * along with Icy. If not, see <http://www.gnu.org/licenses/>.
018 */
019package icy.gui.main;
020
021/**
022 * @deprecated Use one of these interface instead:<br/>
023 *             {@link GlobalViewerListener}<br/>
024 *             {@link GlobalSequenceListener}<br/>
025 *             {@link GlobalROIListener}<br/>
026 *             {@link GlobalOverlayListener}<br/>
027 *             {@link GlobalPluginListener}
028 */
029@Deprecated
030public abstract class MainAdapter implements MainListener
031{
032    @Override
033    public void painterAdded(MainEvent event)
034    {
035
036    }
037
038    @Override
039    public void painterRemoved(MainEvent event)
040    {
041
042    }
043
044    @Override
045    public void roiAdded(MainEvent event)
046    {
047
048    }
049
050    @Override
051    public void roiRemoved(MainEvent event)
052    {
053
054    }
055
056    @Override
057    public void sequenceClosed(MainEvent event)
058    {
059
060    }
061
062    @Override
063    public void sequenceFocused(MainEvent event)
064    {
065
066    }
067
068    @Override
069    public void sequenceOpened(MainEvent event)
070    {
071
072    }
073
074    @Override
075    public void viewerClosed(MainEvent event)
076    {
077
078    }
079
080    @Override
081    public void viewerFocused(MainEvent event)
082    {
083
084    }
085
086    @Override
087    public void viewerOpened(MainEvent event)
088    {
089
090    }
091
092    @Override
093    public void pluginClosed(MainEvent event)
094    {
095
096    }
097
098    @Override
099    public void pluginOpened(MainEvent event)
100    {
101
102    }
103}