org.eclipse.ui.application.ActionBarAdvisor Java Examples

The following examples show how to use org.eclipse.ui.application.ActionBarAdvisor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BonitaStudioWorkbenchWindowAdvisor.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(final IActionBarConfigurer configurer) {
    return new ActionBarAdvisor(configurer) {

        @Override
        protected void makeActions(final IWorkbenchWindow window) {
            super.makeActions(window);
            register(ActionFactory.UNDO.create(window));
            register(ActionFactory.REDO.create(window));
            register(ActionFactory.PREFERENCES.create(window));
            register(ActionFactory.ABOUT.create(window));
        }
    };
}
 
Example #2
Source File: N4JSApplicationWorkbenchWindowAdvisor.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(final IActionBarConfigurer configurer) {
	return new N4JSApplicationActionBarAdvisor(configurer);
}
 
Example #3
Source File: RcpWindowAdvisor.java    From olca-app with Mozilla Public License 2.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new RcpActionBarAdvisor(configurer);
}
 
Example #4
Source File: ApplicationWorkbenchWindowAdvisor.java    From elexis-3-core with Eclipse Public License 1.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer){
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #5
Source File: ApplicationWorkbenchWindowAdvisor.java    From jbt with Apache License 2.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #6
Source File: ClientWorkbenchWindowAdvisor.java    From ice with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(
		IActionBarConfigurer configurer) {
	return new ClientActionBarAdvisor(configurer);
}
 
Example #7
Source File: DesignerWorkbenchWindowAdvisor.java    From birt with Eclipse Public License 1.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(
		IActionBarConfigurer configurer )
{
	return new DesignerActionBarAdvisor( configurer );
}
 
Example #8
Source File: ApplicationWorkbenchWindowAdvisor.java    From tmxeditor8 with GNU General Public License v2.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(
		IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #9
Source File: ApplicationWorkbenchWindowAdvisor.java    From tmxeditor8 with GNU General Public License v2.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #10
Source File: ApplicationWorkbenchWindowAdvisor.java    From codeexamples-eclipse with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(
		IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #11
Source File: ApplicationWorkbenchWindowAdvisor.java    From translationstudio8 with GNU General Public License v2.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(
		IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #12
Source File: ApplicationWorkbenchWindowAdvisor.java    From slr-toolkit with Eclipse Public License 1.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	this.actionBarConfigurer = configurer;
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #13
Source File: ApplicationWorkbenchWindowAdvisor.java    From gama with GNU General Public License v3.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(final IActionBarConfigurer configurer) {
	return new GamaActionBarAdvisor(configurer);
}
 
Example #14
Source File: ApplicationWorkbenchWindowAdvisor.java    From depan with Apache License 2.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(
    IActionBarConfigurer configurer) {
  return new ApplicationActionBarAdvisor(configurer);
}
 
Example #15
Source File: ApplicationWorkbenchWindowAdvisor.java    From tracecompass with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
}
 
Example #16
Source File: ApplicationWorkbenchWindowAdvisor.java    From tlaplus with MIT License 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer)
{
    return new ApplicationActionBarAdvisor(configurer);
}
 
Example #17
Source File: ApplicationWorkbenchWindowAdvisor.java    From neoscada with Eclipse Public License 1.0 4 votes vote down vote up
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
}
 
Example #18
Source File: ApplicationWorkbenchWindowAdvisor.java    From neoscada with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor ( final IActionBarConfigurer configurer )
{
    return new ApplicationActionBarAdvisor ( configurer );
}
 
Example #19
Source File: ApplicationWorkbenchWindowAdvisor.java    From neoscada with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public ActionBarAdvisor createActionBarAdvisor ( final IActionBarConfigurer configurer )
{
    return new ApplicationActionBarAdvisor ( configurer );
}
 
Example #20
Source File: ApplicationWorkbenchWindowAdvisor.java    From MergeProcessor with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ActionBarAdvisor(configurer);
}
 
Example #21
Source File: ApplicationWorkbenchWindowAdvisor.java    From translationstudio8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * (non-Javadoc)
 * @see org.eclipse.ui.application.WorkbenchWindowAdvisor#createActionBarAdvisor(org.eclipse.ui.application.IActionBarConfigurer)
 */
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #22
Source File: ApplicationWorkbenchWindowAdvisor.java    From translationstudio8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * (non-Javadoc)
 * @see org.eclipse.ui.application.WorkbenchWindowAdvisor#createActionBarAdvisor(org.eclipse.ui.application.IActionBarConfigurer)
 */
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #23
Source File: ApplicationWorkbenchWindowAdvisor.java    From tmxeditor8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * (non-Javadoc)
 * @see org.eclipse.ui.application.WorkbenchWindowAdvisor#createActionBarAdvisor(org.eclipse.ui.application.IActionBarConfigurer)
 */
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}
 
Example #24
Source File: ApplicationWorkbenchWindowAdvisor.java    From tmxeditor8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * (non-Javadoc)
 * @see org.eclipse.ui.application.WorkbenchWindowAdvisor#createActionBarAdvisor(org.eclipse.ui.application.IActionBarConfigurer)
 */
public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
	return new ApplicationActionBarAdvisor(configurer);
}