blob: 769a1eac3950262fe716900a2a36ed6d855037e5 [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;
import org.eclipse.osbp.ecview.extension.model.YStrategyLayout;
/**
* Is used to fill all required focusing strategies to the strategy layout for
* default behaviour.
*/
public interface IFocusingEnhancer {
/** The Constant PROPERTY__OSGI_SERVICE. */
public static final String PROPERTY__OSGI_SERVICE = "ecview.focusing.enhancer.id";
/** The Constant PROPERTY__DEFAULT_OSGI_SERVICE. */
public static final String PROPERTY__DEFAULT_OSGI_SERVICE = "ecview.focusing.enhancer.default";
/**
* Is called before the strategy layout will become rendered. And any time,
* the focusing strategies should be set to default.
*
* @param yLayout
* the y layout
*/
void enhanceFocusing(YStrategyLayout yLayout);
}