this._root = this._nodeStack.pop();
}
public void property(String name, LexicalUnit value, boolean important)
throws CSSException {
CSSStyleDeclarationImpl decl =
(CSSStyleDeclarationImpl) this._nodeStack.peek();
try
{
Property property =
new Property(name, new CSSValueImpl(value), important);
this.addLocator(property);
decl.addProperty(property);
}
catch (DOMException e)
{
// call ErrorHandler?
}