Examples of SVGAnimatedInteger


Examples of org.w3c.dom.svg.SVGAnimatedInteger

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEConvolveMatrixElement#getTargetX()}.
     */
    public SVGAnimatedInteger getTargetX() {
  SVGAnimatedInteger result;
  if (targetXReference == null ||
      (result = (SVGAnimatedInteger)targetXReference.get()) == null) {
      result = new SVGOMAnimatedInteger(this, null, ATTR_TARGET_X);
      targetXReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedInteger

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEConvolveMatrixElement#getTargetY()}.
     */
    public SVGAnimatedInteger getTargetY() {
  SVGAnimatedInteger result;
  if (targetYReference == null ||
      (result = (SVGAnimatedInteger)targetYReference.get()) == null) {
      result = new SVGOMAnimatedInteger(this, null, ATTR_TARGET_Y);
      targetYReference = 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.