KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGFEGaussianBlurElement


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFEGaussianBlurElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   public SVGAnimatedString getIn1( );
8   public SVGAnimatedNumber getStdDeviationX( );
9   public SVGAnimatedNumber getStdDeviationY( );
10
11   public void setStdDeviation ( float stdDeviationX, float stdDeviationY );
12 }
13
Popular Tags