blob: c897d6eef4bd98207057700d9366d896c960321b [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.api;
/**
* Is used to provide the default strategy. It needs to be passed in
* IViewContext.
*/
public interface IFocusingStrategyProvider {
/**
* do not use anymore! The DefaultFocusingStrategyProvider was removed.
*/
@Deprecated()
public static final String ACTIVE_PROVIDER_TOPIC = "org/eclipse/osbp/ecview/focusing/strategyprovider";
/** The Constant PROPERTY__OSGI_SERVICE. */
public static final String PROPERTY__OSGI_SERVICE = "ecview.focusing.id";
/**
* Returns the IFocusingStrategy.
*
* @return the strategy
*/
IFocusingStrategy getStrategy();
}