Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9987cdc7b2c25cf95a4effba3a16b536f7649005 (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
/*******************************************************************************
 * Copyright (c) 2009 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.ql;

import java.util.Locale;
import org.eclipse.equinox.p2.query.IQuery;

/**
 * An IQuery 'context query' implementation that is based on the p2 query language.
 */
public abstract class QLQuery<T> implements IQuery<T> {
	final Class<T> elementClass;
	private Locale locale;

	protected QLQuery(Class<T> elementClass) {
		this.elementClass = elementClass;
	}

	public Locale getLocale() {
		return locale == null ? Locale.getDefault() : locale;
	}

	public void setLocale(Locale locale) {
		this.locale = locale;
	}

}

Back to the top