/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGComponentTransferFunctionElement#getIntercept()}.
*/
public SVGAnimatedNumber getIntercept() {
SVGAnimatedNumber result;
if (interceptReference == null ||
(result = (SVGAnimatedNumber)interceptReference.get()) == null) {
result = new SVGOMAnimatedNumber(this, null, SVG_INTERCEPT_ATTRIBUTE,
INTERCEPT_DEFAULT_VALUE_PRODUCER);
interceptReference = new WeakReference(result);