Package org.rhq.coregui.client.bundle.version

Examples of org.rhq.coregui.client.bundle.version.BundleVersionListView


    private Tab createVersionsTab() {
        Tab versionsTab = new Tab(MSG.view_bundle_versions());
        Criteria criteria = new Criteria();
        criteria.addCriteria("bundleId", bundleBeingViewed);
        Table bundleVersionsTable = new BundleVersionListView(criteria);
        versionsTab.setPane(bundleVersionsTable);
        return versionsTab;
    }
View Full Code Here


            tab = new Tab(MSG.common_title_bundles());
            tab.setIcon(ImageManager.getBundleIcon());
            tab.setPane(bundlesView);
            container.addTab(tab);

            BundleVersionListView bundleVersionListView = new BundleVersionListView(criteria);
            viewsWithTags.add(bundleVersionListView);
            tab = new Tab(MSG.view_bundle_bundleVersions());
            tab.setIcon("subsystems/bundle/BundleVersion_16.png");
            tab.setPane(bundleVersionListView);
            container.addTab(tab);
View Full Code Here

TOP

Related Classes of org.rhq.coregui.client.bundle.version.BundleVersionListView

Copyright © 2018 www.massapicom. 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.