001 // $Id: //open/mondrian/src/main/mondrian/gui/LanguageChangedEvent.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 class LanguageChangedEvent { 013 014 private java.util.Locale locale; 015 016 /** Creates a new instance of LanguageChangedEvent */ 017 public LanguageChangedEvent(java.util.Locale locale) { 018 this.locale = locale; 019 } 020 021 /** Getter for property locale. 022 * @return Value of property locale. 023 * 024 */ 025 public java.util.Locale getLocale() { 026 return locale; 027 } 028 029 /** Setter for property locale. 030 * @param locale New value of property locale. 031 * 032 */ 033 public void setLocale(java.util.Locale locale) { 034 this.locale = locale; 035 } 036 037 } 038 039 // End LanguageChangedEvent.java