001 // $Id: //open/mondrian/src/main/mondrian/gui/LanguageChangedListener.java#2 $ 002 // This software is subject to the terms of the Common Public License 003 // Agreement, available at the following URL: 004 // http://www.opensource.org/licenses/cpl.html. 005 // Copyright (C) 2007 JasperSoft 006 // Copyright (C) 2008-2008 Julian Hyde 007 // All Rights Reserved. 008 // You must accept the terms of that agreement to use this software. 009 010 package mondrian.gui; 011 012 public interface LanguageChangedListener { 013 public void languageChanged(LanguageChangedEvent evt); 014 } 015 016 // End LanguageChangedListener.java