001 package com.sptci.system.style;
002
003 import nextapp.echo2.app.Column;
004 import nextapp.echo2.app.Extent;
005 import nextapp.echo2.app.Insets;
006
007 import com.sptci.echo2.style.Style;
008
009 /**
010 * The style class for the primary column in {@link com.sptci.system.LoginView}.
011 *
012 * <p>Copyright 2007 Sans Pareil Technologies, Inc.</p>
013 * @author Rakesh Vidyadharan 2007-04-21
014 * @version $Id: LoginViewColumn.java 3130 2007-04-23 22:38:02Z rakesh $
015 */
016 public class LoginViewColumn extends Style
017 {
018 /**
019 * Initialise the style properties.
020 */
021 protected void init()
022 {
023 setProperty( Column.PROPERTY_CELL_SPACING, new Extent( 0, Extent.PX ) );
024 setProperty( Column.PROPERTY_INSETS, new Insets(
025 new Extent( 0, Extent.PX ), new Extent( 0, Extent.PX ),
026 new Extent( 0, Extent.PX ), new Extent( 0, Extent.PX ) ) );
027 }
028 }