Examples of SVGAnimatedNumber


Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <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);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.