it.eng.spagobi.studio.birt.actions.NewBirtAction.java Source code

Java tutorial

Introduction

Here is the source code for it.eng.spagobi.studio.birt.actions.NewBirtAction.java

Source

/**
 SpagoBI, the Open Source Business Intelligence suite
    
 Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center
 This Source Code Form is subject to the terms of the Mozilla Public
 License, v. 2.0. If a copy of the MPL was not distributed with this file,
 You can obtain one at http://mozilla.org/MPL/2.0/.
     
**/
package it.eng.spagobi.studio.birt.actions;

import it.eng.spagobi.studio.birt.wizards.SpagoBINewBirtReportWizard;

import org.eclipse.core.internal.resources.Folder;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.navigator.CommonNavigator;
import org.eclipse.ui.navigator.CommonViewer;

public class NewBirtAction implements IObjectActionDelegate {

    private IViewPart view = null;

    ISelection selection;

    public NewBirtAction() {
        // TODO Auto-generated constructor stub
    }

    public void init(IViewPart view) {
        this.view = view;
    }

    public void run(IAction action) {
        SpagoBINewBirtReportWizard sbindw = new SpagoBINewBirtReportWizard();
        //      CommonViewer commViewer=((CommonNavigator) view).getCommonViewer();
        //      IStructuredSelection sel=(IStructuredSelection)commViewer.getSelection();
        IStructuredSelection sel = (IStructuredSelection) selection;

        Object objSel = sel.toList().get(0);
        Folder folderSel = null;
        try {
            // FolderSel is the folder in wich to insert the new template
            folderSel = (Folder) objSel;

            sbindw.init(PlatformUI.getWorkbench(), sel);
            // Create the wizard dialog
            WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
                    sbindw);
            // Open the wizard dialog
            dialog.open();

        } catch (Exception e) {
            //         SpagoBILogger.errorLog("no selected folder", e);         
            MessageDialog.openInformation(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "Error",
                    "You must select a folder in wich to insert the report");
        }

    }

    public void selectionChanged(IAction action, ISelection selection) {
        this.selection = selection;

    }

    public void setActivePart(IAction arg0, IWorkbenchPart arg1) {
        // TODO Auto-generated method stub

    }

}