/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.venky.swf.views.controls.page.layout; import com.venky.swf.views.controls.Control; /** * * @author venky */ public class HorizontalLine extends Control{ /** * */ private static final long serialVersionUID = 2047243585057357790L; public HorizontalLine(){ super("hr"); } protected boolean useMinimizedTagSyntax(){ return true; } }