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

fr.faylixe.googlecodejam.client.common.HTMLConstant Maven / Gradle / Ivy

There is a newer version: 1.4.11
Show newest version
package fr.faylixe.googlecodejam.client.common;

/**
 * 

Simple class that exposes HTML String related constants value.

* * @author fv */ public final class HTMLConstant { /** HTML tag H3. **/ public static final String H3 = "h3"; /** HTML tag IMG. **/ public static final String IMG = "img"; /** HTML tag A. **/ public static final String ANCHOR = "a"; /** HTML tag TR. **/ public static final String TR = "tr"; /** HTML tag TD. **/ public static final String TD = "td"; /** HTML attribute HREF. **/ public static final String HREF = "href"; /** HTML attribute SRC. **/ public static final String SRC = "src"; /** * Private constructor for avoiding instantiation. */ private HTMLConstant() { // Do nothing. } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy