blob: edad68c02e73079cbb648a8cdfde3e364374d1d4 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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 EnterForwardFocusingStrategyProvider.
*/
@Component(immediate=true, service = IFocusingStrategyProvider.class, property = { "ecview.focusing.id=cx.enter.forward" })
public class EnterForwardFocusingStrategyProvider implements
IFocusingStrategyProvider {
/** The Constant ID. */
public static final String ID = "cx.enter.forward";
/* (non-Javadoc)
* @see org.eclipse.osbp.ecview.extension.api.IFocusingStrategyProvider#getStrategy()
*/
@Override
public IFocusingStrategy getStrategy() {
return new EnterForwardFocusingStrategy();
}
}