2017-11-14 15:53:47 +00:00
|
|
|
package Classes.css.core;
|
|
|
|
|
2017-11-15 17:12:46 +00:00
|
|
|
import java.io.Serializable;
|
|
|
|
|
2017-11-14 15:53:47 +00:00
|
|
|
import javafx.scene.Node;
|
|
|
|
|
2017-11-15 17:12:46 +00:00
|
|
|
public abstract class Rule implements Serializable{
|
|
|
|
|
|
|
|
public abstract void apply(Node target) throws Exception;
|
2017-11-14 15:53:47 +00:00
|
|
|
|
2017-11-15 17:12:46 +00:00
|
|
|
public abstract String toString();
|
2017-11-14 15:53:47 +00:00
|
|
|
|
|
|
|
}
|