Package org.drools.workbench.screens.guided.dtable.client.widget.auditlog

Examples of org.drools.workbench.screens.guided.dtable.client.widget.auditlog.AuditLog


        // Audit Log button
        auditLogButton = new Button( GuidedDecisionTableConstants.INSTANCE.DecisionTableAuditLog(),
                                     new ClickHandler() {
                                         public void onClick( ClickEvent event ) {
                                             if ( dtable != null ) {
                                                 AuditLog log = new AuditLog( dtable.model,
                                                                              identity );
                                                 log.show();
                                             }
                                         }
                                     } );
        auditLogButton.setEnabled( !isReadOnly );
        panel.add( auditLogButton );
View Full Code Here

TOP

Related Classes of org.drools.workbench.screens.guided.dtable.client.widget.auditlog.AuditLog

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.