001    package com.sptci.system.style;
002    
003    import nextapp.echo2.app.Component;
004    
005    import com.sptci.echo2.style.Style;
006    import com.sptci.echo2.style.Background;
007    
008    /**
009     * A style class for {link com.sptci.system.LoginView}.  This style is used
010     * to set the background colour for the <code>ContentPane</code>.
011     *
012     * <p>Copyright 2007 Sans Pareil Technologies, Inc.</p>
013     * @author Rakesh Vidyadharan 2007-04-21
014     * @version $Id: LoginView.java 3102 2007-04-23 00:55:15Z rakesh $
015     */
016    public class LoginView extends Style
017    {
018      /**
019       * Initialise the style properties.
020       */
021      @Override
022      protected void init()
023      {
024        setProperty( Component.PROPERTY_BACKGROUND, Background.getInstance() );
025      }
026    }