/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGFEConvolveMatrixElement#getDivisor()}.
*/
public SVGAnimatedNumber getDivisor() {
SVGAnimatedNumber result;
if (divisorReference == null ||
(result = (SVGAnimatedNumber)divisorReference.get()) == null) {
result = new SVGOMAnimatedNumber(this, null, ATTR_DIVISOR);
divisorReference = new WeakReference(result);
}