blob: 476960f8e842a1e531c4b66f8646f5fc6f39b176 [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 TabForwardFocusingStrategyProvider.
*/
@Component(immediate=true, service = IFocusingStrategyProvider.class, property = { "ecview.focusing.id=cx.tab.forward" })
public class TabForwardFocusingStrategyProvider implements
IFocusingStrategyProvider {
/** The Constant ID. */
public static final String ID = "cx.tab.forward";
/* (non-Javadoc)
* @see org.eclipse.osbp.ecview.extension.api.IFocusingStrategyProvider#getStrategy()
*/
@Override
public IFocusingStrategy getStrategy() {
return new TabForwardFocusingStrategy();
}
}