blob: 0c86401afbe63b89f29520906a7f8e76fcf48f96 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* 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:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.ecview.extension.strategy;
import org.osgi.service.component.annotations.Component;
import org.eclipse.osbp.ecview.extension.api.IFocusingStrategy;
import org.eclipse.osbp.ecview.extension.api.IFocusingStrategyProvider;
/**
* The Class EnterBackwardFocusingStrategyProvider.
*/
@Component(immediate=true, service = IFocusingStrategyProvider.class, property = { "ecview.focusing.id=cx.enter.backward" })
public class EnterBackwardFocusingStrategyProvider implements
IFocusingStrategyProvider {
/** The Constant ID. */
public static final String ID = "cx.enter.backward";
/* (non-Javadoc)
* @see org.eclipse.osbp.ecview.extension.api.IFocusingStrategyProvider#getStrategy()
*/
@Override
public IFocusingStrategy getStrategy() {
return new EnterBackwardFocusingStrategy();
}
}