001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2007-2007 JasperSoft
008// Copyright (C) 2008-2009 Pentaho
009// All Rights Reserved.
010*/
011package mondrian.gui;
012
013public class LanguageChangedEvent {
014
015    private java.util.Locale locale;
016
017    /** Creates a new instance of LanguageChangedEvent */
018    public LanguageChangedEvent(java.util.Locale locale) {
019        this.locale = locale;
020    }
021
022    /** Getter for property locale.
023     * @return Value of property locale.
024     *
025     */
026    public java.util.Locale getLocale() {
027        return locale;
028    }
029
030    /** Setter for property locale.
031     * @param locale New value of property locale.
032     *
033     */
034    public void setLocale(java.util.Locale locale) {
035        this.locale = locale;
036    }
037
038}
039
040// End LanguageChangedEvent.java