Package javax.swing

Examples of javax.swing.JLabel.removeMouseListener()


        JLabel icon = new JLabel(new ImageIcon(this.getClass()
            .getResource("/images/button-ok.png")));
        icon.setToolTipText("Cerrar");

        icon.removeMouseListener(null);
        icon.addMouseListener(new Cerrar(frame, message_));

        JLabel text = new JLabel(texto);
        text.setBackground(Color.WHITE);
        text.setForeground(Color.BLACK);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.