1 /******************************************************************************* 2 * Copyright (c) 2003, 2004 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.internal; 12 13 import org.eclipse.jface.action.ICoolBarManager; 14 import org.eclipse.jface.action.IMenuManager; 15 import org.eclipse.jface.action.IStatusLineManager; 16 import org.eclipse.ui.application.IActionBarConfigurer; 17 18 /** 19 * Abstract base implementation of an IActionBarConfigurer. 20 * 21 * @since 3.0 22 */ 23 public abstract class AbstractActionBarConfigurer implements 24 IActionBarConfigurer { 25 26 /* (non-javadoc) 27 * @see org.eclipse.ui.application.IActionBarConfigurer 28 */ 29 public abstract IStatusLineManager getStatusLineManager(); 30 31 /* (non-javadoc) 32 * @see org.eclipse.ui.application.IActionBarConfigurer 33 */ 34 public abstract IMenuManager getMenuManager(); 35 36 /* 37 * (non-Javadoc) 38 * @see org.eclipse.ui.application.IActionBarConfigurer#getCoolBarManager() 39 */ 40 public abstract ICoolBarManager getCoolBarManager(); 41 42 } 43