001 package com.sptci.echo2.style;
002
003 import nextapp.echo2.app.Button;
004
005 /**
006 * A style class for link buttons that are currently selected. This
007 * simulates normal HTML URL's.
008 *
009 * <p>Copyright 2006 Sans Pareil Technologies, Inc.</p>
010 * @author Rakesh Vidyadharan 2006-11-06
011 * @version $Id: SelectedLink.java 3317 2007-06-07 16:17:07Z rakesh $
012 */
013 public class SelectedLink extends Link
014 {
015 /**
016 * Initialise the style properties. Over-ridden to use bold font.
017 */
018 @Override
019 protected void init()
020 {
021 super.init();
022 setProperty( Button.PROPERTY_FONT, Font.getInstance( Font.BOLD ) );
023 }
024 }