blob: 506bcdb2977f84ce922113781421eba2ce455f8f [file] [log] [blame]
package org.eclipse.scout.rt.client.mobile.navigation;
import org.eclipse.scout.rt.client.ui.desktop.IDesktop;
import org.eclipse.scout.service.IService;
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
/**
* @since 3.9.0
*/
public interface IBreadCrumbsNavigationService extends IService {
void install();
void install(IDesktop desktop);
void uninstall();
IBreadCrumbsNavigation getBreadCrumbsNavigation();
}