com.hfg.html.Meta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.html;
//------------------------------------------------------------------------------
/**
* Represents a meta (<meta>) tag.
*
* @author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
public class Meta extends HTMLTag
{
public static final Meta CONTENT_TYPE_ISO_8859_1 = new Meta();
public static final Meta GOOGLE_CHOME_FRAME = new Meta();
static
{
CONTENT_TYPE_ISO_8859_1.setHttpEquiv("Content-Type")
.setContentAttribute("text/html; charset=ISO-8859-1");
GOOGLE_CHOME_FRAME.setHttpEquiv("X-UA-Compatible").setContentAttribute("chrome=1");
}
//##########################################################################
// PRIVATE FIELDS
//##########################################################################
//##########################################################################
// CONSTRUCTORS
//##########################################################################
//--------------------------------------------------------------------------
public Meta()
{
super(HTML.META);
}
//##########################################################################
// PUBLIC METHODS
//##########################################################################
//--------------------------------------------------------------------------
public Meta setHttpEquiv(String inValue)
{
setAttribute(HTML.HTTP_EQUIV, inValue);
return this;
}
//--------------------------------------------------------------------------
public Meta setName(String inValue)
{
setAttribute(HTML.NAME, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getName()
{
return getAttributeValue(HTML.NAME);
}
//--------------------------------------------------------------------------
public Meta setContentAttribute(String inValue)
{
setAttribute(HTML.CONTENT, inValue);
return this;
}
//--------------------------------------------------------------------------
public String getContentAttribute()
{
return getAttributeValue(HTML.CONTENT);
}
}