001 package net.sf.jolene.constants; 002 003 /** 004 * Supported HTML tags. 005 * @author : Dan Howard 006 * @since : Oct 12, 2005 5:08:17 AM 007 */ 008 public enum Tags { 009 input, button, form, table, img, label, select, textarea, tr, td, th, option, meta, script, link, style; 010 } 011