Java JLabel Create createJLabel(String mlabel)

Here you can find the source of createJLabel(String mlabel)

Description

Create a JLabel but make the font plain instead of super ugly BOLD

License

Open Source License

Parameter

Parameter Description
mlabel the label to initialie the JLabel to

Return

an initialized JLabel with a PLAIN font

Declaration

public static JLabel createJLabel(String mlabel) 

Method Source Code


//package com.java2s;
/* Copyright (C) 2001-2002 Taylor Gautier
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your 
 * option) any later version.//from  w w  w.  j a v  a2  s  .  co  m
 *
 * This program is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along 
 * with this program; if not, write to the Free Software Foundation, Inc., 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * $Id: GUIUtilities.java,v 1.1 2002/08/05 00:06:41 tgautier Exp $
 */

import java.awt.*;

import javax.swing.*;

public class Main {
    /**
    * Create a JLabel but make the font plain instead of super ugly BOLD
    *
    * @param mlabel the label to initialie the JLabel to
    *
    * @return an initialized JLabel with a PLAIN font
    */
    public static JLabel createJLabel(String mlabel) {
        JLabel l = new JLabel(mlabel, SwingConstants.LEFT);
        setFontType(l, Font.PLAIN);

        return l;
    }

    /**
     * Set the font type for a component (leaves other properties of
     * the current font intact)
     *
     * @param type the new type for the font
     */
    public static void setFontType(Component c, int type) {
        c.setFont(c.getFont().deriveFont(type));
    }
}

Related

  1. createCenteredLabel(JLabel label)
  2. createFormPanel(JLabel label, JComponent component)
  3. createJLabel(Container c, String caption, int x, int y)
  4. createJLabel(final String text, final Font font, final Color color)
  5. createJLabel(String text, Font font)
  6. createJLabel(String text, Font font)
  7. createLabel(String name, int x, int y, int width, int height, Font font)
  8. createLabel(String text, Font f)