Interface StandardTag

  • All Known Subinterfaces:
    EmbeddedImage
    All Known Implementing Classes:
    DefaultEmbeddedImage, DefaultStandardTag

    public interface StandardTag
    An interface representing the standard attributes supported by almost all HTML tags. See http://www.w3schools.com/tags/ref_standardattributes.asp
    • Method Detail

      • getHtmlClass

        String getHtmlClass()
        Returns:
        the value of the class attribute for the tag or null if there is no class specified.
      • getId

        String getId()
        Returns:
        the id for the tag. It may be null.
      • getStyle

        String getStyle()
        Returns:
        the value of the style attribute. It may be null.
      • getTitle

        String getTitle()
        Returns:
        the title for the tag. It may be null.