blob: f5bdceb53405831a1a2ca7b511297027b44ed795 [file] [log] [blame]
/**
* Copyright (c) 2013 Loetz GmbH&Co.KG(Heidelberg). 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: Christophe Loetz (Loetz GmbH&Co.KG) - initial API and implementation
*/
package org.eclipse.osbp.ecview.core.common.context;
import java.util.Locale;
import org.eclipse.osbp.ecview.core.common.IAccessible;
import org.eclipse.osbp.runtime.common.dispose.IDisposable;
// TODO: Auto-generated Javadoc
/**
* Marker interface for context.
*
* @author dominguez
*
*/
public interface IContext extends IDisposable, IAccessible {
/**
* Sets the current locale of the view or viewset.
*
* @param locale
* the new locale
*/
void setLocale(Locale locale);
/**
* Returns the current locale of the view or viewset.
*
* @return the locale
*/
Locale getLocale();
}