All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.html.Meta Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
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);
   }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy