001    package com.sptci.echo2.style;
002    
003    import nextapp.echo2.app.Label;
004    
005    /**
006     * The style class for label that need to be displayed
007     * using bold fonts.
008     *
009     * <p>Copyright 2006 Sans Pareil Technologies, Inc.</p>
010     * @author Rakesh Vidyadharan 2006-12-296
011     * @version $Id: BoldLabel.java 3316 2007-06-07 16:16:27Z rakesh $
012     */
013    public class BoldLabel extends Style
014    {
015      /**
016       * Initialise the style properties.
017       */
018      @Override
019      protected void init()
020      {
021        setProperty( Label.PROPERTY_FONT, Font.getInstance( Font.BOLD ) );
022      }
023    }