/*************************************************** * * cismet GmbH, Saarbruecken, Germany * * ... and it just works. * ****************************************************/ /* * MapLockedPanel.java * * Created on 29.08.2011, 10:38:01 */ package de.cismet.cismap.commons.gui.statusbar; /** * DOCUMENT ME! * * @author jweintraut * @version $Revision$, $Date$ */ public class MapExtentFixedPanel extends javax.swing.JPanel { //~ Instance fields -------------------------------------------------------- // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel lblMapLockedIcon; // End of variables declaration//GEN-END:variables //~ Constructors ----------------------------------------------------------- /** * Creates new form MapLockedPanel. */ public MapExtentFixedPanel() { 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() { lblMapLockedIcon = new javax.swing.JLabel(); setLayout(new java.awt.BorderLayout()); lblMapLockedIcon.setIcon(new javax.swing.ImageIcon( getClass().getResource("/de/cismet/cismap/commons/gui/statusbar/fixMapExtent.png"))); // NOI18N lblMapLockedIcon.setText(org.openide.util.NbBundle.getMessage( MapExtentFixedPanel.class, "MapExtentFixedPanel.lblMapLockedIcon.text")); // NOI18N lblMapLockedIcon.setToolTipText(org.openide.util.NbBundle.getMessage( MapExtentFixedPanel.class, "MapExtentFixedPanel.lblMapLockedIcon.toolTipText")); // NOI18N add(lblMapLockedIcon, java.awt.BorderLayout.CENTER); } // </editor-fold>//GEN-END:initComponents }