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

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

/**
 * KeyframeBlock.java
 *
 * Created on 31. 1. 2019, 16:20:34 by burgetr
 */
package cz.vutbr.web.css;

import java.util.List;

/**
 * Holds a set of keyframe declarations.
 * 
 * @author burgetr
 */
public interface KeyframeBlock extends RuleBlock, PrettyOutput {
    
    /**
     * Reads the percentages used as the keyframe selectors.
     * @return a list of selector percentages
     */
    public List getPercentages();
    
    /**
     * Sets the percentages used as the keyframe selectors.
     * @return the modified instance
     */
    public KeyframeBlock setPercentages(List percentages);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy