Author: echatellier Date: 2012-06-05 11:04:14 +0200 (Tue, 05 Jun 2012) New Revision: 3440 Url: http://chorem.org/repositories/revision/lima/3440 Log: Correction probl?\195?\168me de commit Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/common/IntervalListener.java Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/common/IntervalListener.java =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/common/IntervalListener.java 2012-06-04 16:07:10 UTC (rev 3439) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/common/IntervalListener.java 2012-06-05 09:04:14 UTC (rev 3440) @@ -0,0 +1,31 @@ +/* + * #%L + * Lima :: Swing + * $Id$ + * $HeadURL$ + * %% + * Copyright (C) 2012 CodeLutin, Chatellier Eric + * %% + * 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/gpl-3.0.html>. + * #L% + */ +package org.chorem.lima.ui.common; + +import java.util.EventListener; +import java.util.EventObject; + +public interface IntervalListener extends EventListener { + public void intervalChanged(EventObject e); +}