/* * $Id: Heading6.java,v 1.2 2005/10/02 13:46:18 laddi Exp $ * Created on Jul 11, 2005 * * Copyright (C) 2005 Idega Software hf. All Rights Reserved. * * This software is the proprietary information of Idega hf. * Use is subject to license terms. */ package com.idega.presentation.text; /** * Last modified: $Date: 2005/10/02 13:46:18 $ by $Author: laddi $ * * @author <a href="mailto:laddi@idega.com">laddi</a> * @version $Revision: 1.2 $ */ public class Heading6 extends Text { public Heading6() { super(); } public Heading6(String text) { super(text); } protected String getTag() { return "h6"; } protected boolean showTag() { return true; } }