Package org.rhq.coregui.client.alert

Examples of org.rhq.coregui.client.alert.GroupAlertHistoryView


            // alert history is always available
            updateSubTab(this.alertsTab, this.alertHistory, true, true, new ViewFactory() {
                @Override
                public Canvas createView() {
                    // hide the "new definition" button for mixed groups
                    GroupAlertHistoryView canvas = GroupAlertHistoryView.get(groupComposite);
                    canvas.setShowNewDefinitionButton(groupCategory == GroupCategory.COMPATIBLE);
                    return viewWithoutHeader(canvas);
                }
            });
            // but alert definitions can only be created on compatible groups
            boolean visible = (groupCategory == GroupCategory.COMPATIBLE);
View Full Code Here

TOP

Related Classes of org.rhq.coregui.client.alert.GroupAlertHistoryView

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.