blob: 02e7ab17fe73b4d6c725914e4143bb304326a9f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.internal.menus;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.CoolBar;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ToolBar;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.menus.IWorkbenchWidget;
/**
* @since 3.3
*
*/
public class AbstractWorkbenchWidget implements IWorkbenchWidget {
/* (non-Javadoc)
* @see org.eclipse.ui.menus.IWorkbenchWidget#init(org.eclipse.ui.IWorkbenchWindow)
*/
public void init(IWorkbenchWindow workbenchWindow) {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.eclipse.jface.menus.IWidget#dispose()
*/
public void dispose() {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.eclipse.jface.menus.IWidget#fill(org.eclipse.swt.widgets.Composite)
*/
public void fill(Composite parent) {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.eclipse.jface.menus.IWidget#fill(org.eclipse.swt.widgets.Menu, int)
*/
public void fill(Menu parent, int index) {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.eclipse.jface.menus.IWidget#fill(org.eclipse.swt.widgets.ToolBar, int)
*/
public void fill(ToolBar parent, int index) {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.eclipse.jface.menus.IWidget#fill(org.eclipse.swt.widgets.CoolBar, int)
*/
public void fill(CoolBar parent, int index) {
// TODO Auto-generated method stub
}
/**
* @return The preferred size of this item
*/
public Point getPreferredSize() {
return null;
}
}