/*************************************************** * * cismet GmbH, Saarbruecken, Germany * * ... and it just works. * ****************************************************/ /* * ServicesBusyPanel.java * * Created on 23.08.2011, 16:15:14 */ package de.cismet.cismap.commons.gui.statusbar; /** * DOCUMENT ME! * * @author jweintraut * @version $Revision$, $Date$ */ public class ServicesBusyPanel extends javax.swing.JPanel { //~ Instance fields -------------------------------------------------------- // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel lblBusyIcon; // End of variables declaration//GEN-END:variables //~ Constructors ----------------------------------------------------------- /** * Creates new form ServicesBusyPanel. */ public ServicesBusyPanel() { initComponents(); } //~ Methods ---------------------------------------------------------------- /** * This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The * content of this method is always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { lblBusyIcon = new javax.swing.JLabel(); setLayout(new java.awt.BorderLayout()); lblBusyIcon.setIcon(new javax.swing.ImageIcon( getClass().getResource("/de/cismet/cismap/commons/gui/statusbar/inProgress.png"))); // NOI18N lblBusyIcon.setText(org.openide.util.NbBundle.getMessage( ServicesBusyPanel.class, "ServicesBusyPanel.lblBusyIcon.text")); // NOI18N lblBusyIcon.setToolTipText(org.openide.util.NbBundle.getMessage( ServicesBusyPanel.class, "ServicesBusyPanel.lblBusyIcon.toolTipText")); // NOI18N add(lblBusyIcon, java.awt.BorderLayout.CENTER); } // </editor-fold>//GEN-END:initComponents }