/**
* <b>DOM</b>: Implements {@link
* SVGFEGaussianBlurElement#getStdDeviationY()}.
*/
public SVGAnimatedNumber getStdDeviationY() {
SVGAnimatedNumber result;
if (stdDeviationYReference == null ||
(result = (SVGAnimatedNumber)stdDeviationYReference.get()) == null) {
result = new SVGAnimatedNumber() {
public float getBaseVal() {
Attr a = getAttributeNodeNS(null, SVG_STD_DEVIATION_ATTRIBUTE);
if (a != null) {
StringTokenizer st = new StringTokenizer(a.getValue(), " ");
if (st.hasMoreTokens()) {