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

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

package cz.vutbr.web.css;

import java.util.List;

/**
 * Holds set of CSS declarations for specified selectors.
 * 
 * @author kapy
 * @author Jan Svercl, VUT Brno, 2008
 */
public interface RuleSet extends RuleBlock, PrettyOutput {

	/**
	 * Gets selectors of given declaration
	 * 
	 * @return Selectors for this rule
	 */
	public CombinedSelector[] getSelectors();

	/**
	 * Sets selectors for this CSS declarations
	 * 
	 * @param selectors
	 *            Selectors to be set
	 * @return Modified instance
	 */
	public RuleSet setSelectors(List selectors);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy