Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8892a7c679595c8dd2b91733a80e8c9bd5b0e8f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2010 Cloudsmith Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Cloudsmith Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.p2.metadata;

import java.io.Serializable;
import java.util.Locale;

/**
 * A key that can be used to extract a localized property for a specified Locale
 * @noextend This class is not intended to be subclassed by clients.
 * @since 2.0
 */
public final class KeyWithLocale implements Serializable {
	private static final long serialVersionUID = 8818242663547645188L;
	private final String key;
	private final Locale locale;

	public KeyWithLocale(String key, Locale locale) {
		this.key = key;
		this.locale = locale;
	}

	public String getKey() {
		return key;
	}

	public Locale getLocale() {
		return locale;
	}
}

Back to the top