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

cz.vutbr.web.css.RuleKeyframes Maven / Gradle / Ivy

/**
 * 
 */
package cz.vutbr.web.css;

/**
 * Contains collection of CSS declarations specified for a keyframes rule.
 * 
 * @author burgetr
 */
public interface RuleKeyframes extends RuleBlock, PrettyOutput {
    
    /**
     * Gets name of the keyframe list
     * @return Name of the keyframe list
     */
    public String getName();
    
    /**
     * Sets name of the keyframe list
     * @param name New name of the keyframe list
     * @return Modified instance
     */
    public RuleKeyframes setName(String name);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy