Interface CssFiles

All Known Implementing Classes:
CssFilesImpl

public interface CssFiles
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(CssFile css)
    Adds css to this CssFiles.
    void
     
    Looks for all CSS properties that affect the given tag.
    boolean
    Check for files with rules.
  • Method Details

    • hasFiles

      boolean hasFiles()
      Check for files with rules.
      Returns:
      true if there are files with rules in this CssFiles collector
    • getCSS

      Map<String,String> getCSS(Tag t)
      Looks for all CSS properties that affect the given tag.
      Parameters:
      t - the tag to check for.
      Returns:
      a map with property as key and the value as value of the property
    • add

      void add(CssFile css)
      Adds css to this CssFiles.
      Parameters:
      css - the CssFile to add.
    • clear

      void clear()