org.w3c.css.properties.css3.Css3Property Maven / Gradle / Ivy
The newest version!
//
// $Id: Css3Property.java,v 1.2 2010-01-05 13:49:49 ylafon Exp $
// From Sijtsche de Jong ([email protected])
//
// COPYRIGHT (c) 1995-2000 World Wide Web Consortium, (MIT, INRIA, Keio University)
// Please first read the full copyright statement in the file COPYRIGHT.html
package org.w3c.css.properties.css3;
import org.w3c.css.properties.css.CssProperty;
public abstract class Css3Property extends CssProperty {
/**
* Returns true if the property is inherited
*/
public boolean Inherited() {
return Css3Properties.getInheritance(this);
}
}