Examples of AboutBundleGroupData


Examples of org.eclipse.ui.internal.about.AboutBundleGroupData

        LinkedList groups = new LinkedList();
        if (providers != null) {
      for (int i = 0; i < providers.length; ++i) {
                IBundleGroup[] bundleGroups = providers[i].getBundleGroups();
                for (int j = 0; j < bundleGroups.length; ++j) {
          groups.add(new AboutBundleGroupData(bundleGroups[j]));
        }
            }
    }
        bundleGroupInfos = (AboutBundleGroupData[]) groups
                .toArray(new AboutBundleGroupData[0]);
View Full Code Here

Examples of org.eclipse.ui.internal.about.AboutBundleGroupData

        });
        button.addSelectionListener(new SelectionAdapter() {
            public void widgetSelected(SelectionEvent event) {
                AboutBundleGroupData[] groupInfos = buttonManager
                        .getRelatedInfos(info);
                AboutBundleGroupData selection = (AboutBundleGroupData) event.widget
                        .getData();

                AboutFeaturesDialog d = new AboutFeaturesDialog(getShell(),
                        productName, groupInfos);
                d.setInitialSelection(selection);
View Full Code Here

Examples of org.eclipse.ui.internal.about.AboutBundleGroupData

        TableItem[] items = table.getSelection();
        if (items.length <= 0) {
      return;
    }

        AboutBundleGroupData info = (AboutBundleGroupData) items[0].getData();
        if (info == null || !openBrowser(info.getLicenseUrl())) {
            MessageDialog.openInformation(getShell(), WorkbenchMessages.AboutFeaturesDialog_noInfoTitle,
                    WorkbenchMessages.AboutFeaturesDialog_noInformation);
        }
    }
View Full Code Here

Examples of org.eclipse.ui.internal.about.AboutBundleGroupData

        TableItem[] items = table.getSelection();
        if (items.length <= 0) {
      return;
    }

        AboutBundleGroupData info = (AboutBundleGroupData) items[0].getData();
        IBundleGroup bundleGroup = info.getBundleGroup();
        Bundle[] bundles = bundleGroup == null ? new Bundle[0] : bundleGroup
                .getBundles();

        AboutPluginsDialog d = new AboutPluginsDialog(getShell(), productName,
                bundles, WorkbenchMessages.AboutFeaturesDialog_pluginInfoTitle,
View Full Code Here

Examples of org.eclipse.ui.internal.about.AboutBundleGroupData

       
        table.setLinesVisible(true);
        table.setFont(parent.getFont());
        table.addSelectionListener(new SelectionAdapter() {
            public void widgetSelected(SelectionEvent e) {
                AboutBundleGroupData info = (AboutBundleGroupData) e.item
                        .getData();
                updateInfoArea(info);
                updateButtons(info);
            }
        });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.