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.frame; 020 021/** 022 * @author Stephane 023 */ 024public class IcyFrameAdapter implements IcyFrameListener 025{ 026 /* 027 * (non-Javadoc) 028 * 029 * @see icy.gui.frame.IcyFrameListener#icyFrameActivated(icy.gui.frame.IcyFrameEvent) 030 */ 031 @Override 032 public void icyFrameActivated(IcyFrameEvent e) 033 { 034 } 035 036 /* 037 * (non-Javadoc) 038 * 039 * @see icy.gui.frame.IcyFrameListener#icyFrameClosed(icy.gui.frame.IcyFrameEvent) 040 */ 041 @Override 042 public void icyFrameClosed(IcyFrameEvent e) 043 { 044 } 045 046 /* 047 * (non-Javadoc) 048 * 049 * @see icy.gui.frame.IcyFrameListener#icyFrameClosing(icy.gui.frame.IcyFrameEvent) 050 */ 051 @Override 052 public void icyFrameClosing(IcyFrameEvent e) 053 { 054 } 055 056 /* 057 * (non-Javadoc) 058 * 059 * @see icy.gui.frame.IcyFrameListener#icyFrameDeactivated(icy.gui.frame.IcyFrameEvent) 060 */ 061 @Override 062 public void icyFrameDeactivated(IcyFrameEvent e) 063 { 064 } 065 066 /* 067 * (non-Javadoc) 068 * 069 * @see icy.gui.frame.IcyFrameListener#icyFrameDeiconified(icy.gui.frame.IcyFrameEvent) 070 */ 071 @Override 072 public void icyFrameDeiconified(IcyFrameEvent e) 073 { 074 } 075 076 /* 077 * (non-Javadoc) 078 * 079 * @see icy.gui.frame.IcyFrameListener#icyFrameExternalized(icy.gui.frame.IcyFrameEvent) 080 */ 081 @Override 082 public void icyFrameExternalized(IcyFrameEvent e) 083 { 084 } 085 086 /* 087 * (non-Javadoc) 088 * 089 * @see icy.gui.frame.IcyFrameListener#icyFrameIconified(icy.gui.frame.IcyFrameEvent) 090 */ 091 @Override 092 public void icyFrameIconified(IcyFrameEvent e) 093 { 094 } 095 096 /* 097 * (non-Javadoc) 098 * 099 * @see icy.gui.frame.IcyFrameListener#icyFrameInternalized(icy.gui.frame.IcyFrameEvent) 100 */ 101 @Override 102 public void icyFrameInternalized(IcyFrameEvent e) 103 { 104 } 105 106 /* 107 * (non-Javadoc) 108 * 109 * @see icy.gui.frame.IcyFrameListener#icyFrameOpened(icy.gui.frame.IcyFrameEvent) 110 */ 111 @Override 112 public void icyFrameOpened(IcyFrameEvent e) 113 { 114 } 115}