001 /*
002 * Copyright 2009-2013 Stephen Colebourne
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.joda.money.format;
017
018 import java.util.Locale;
019
020 /**
021 * Context used when printing money.
022 * <p>
023 * This class is mutable and intended for use by a single thread.
024 * A new instance is created for each parse.
025 */
026 public final class MoneyPrintContext {
027
028 /**
029 * The locale to print using.
030 */
031 private Locale locale;
032
033 /**
034 * Constructor.
035 *
036 * @param locale the locale, not null
037 */
038 MoneyPrintContext(Locale locale) {
039 this.locale = locale;
040 }
041
042 //-----------------------------------------------------------------------
043 /**
044 * Gets the locale.
045 *
046 * @return the locale, never null
047 */
048 public Locale getLocale() {
049 return locale;
050 }
051
052 /**
053 * Sets the locale.
054 *
055 * @param locale the locale, not null
056 */
057 public void setLocale(Locale locale) {
058 MoneyFormatter.checkNotNull(locale, "Locale must not be null");
059 this.locale = locale;
060 }
061
062 }