/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes#getResult()}.
*/
public SVGAnimatedString getResult() {
SVGAnimatedString result;
if (resultReference == null ||
(result = (SVGAnimatedString)resultReference.get()) == null) {
result = new SVGOMAnimatedString(this, null, SVG_RESULT_ATTRIBUTE);
resultReference = new WeakReference(result);
}