Examples of SVGAnimatedNumber


Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEDistantLightElement#getAzimuth()}.
     */
    public SVGAnimatedNumber getAzimuth() {
  SVGAnimatedNumber result;
  if (azimuthReference == null ||
      (result = (SVGAnimatedNumber)azimuthReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_AZIMUTH);
      azimuthReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEDistantLightElement#getElevation()}.
     */
    public SVGAnimatedNumber getElevation() {
  SVGAnimatedNumber result;
  if (elevationReference == null ||
      (result = (SVGAnimatedNumber)elevationReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_ELEVATION);
      elevationReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getX()}.
     */
    public SVGAnimatedNumber getX() {
  SVGAnimatedNumber result;
  if (xReference == null ||
      (result = (SVGAnimatedNumber)xReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_X);
      xReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getY()}.
     */
    public SVGAnimatedNumber getY() {
  SVGAnimatedNumber result;
  if (yReference == null ||
      (result = (SVGAnimatedNumber)yReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_Y);
      yReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getZ()}.
     */
    public SVGAnimatedNumber getZ() {
  SVGAnimatedNumber result;
  if (zReference == null ||
      (result = (SVGAnimatedNumber)zReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_Z);
      zReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getPointsAtX()}.
     */
    public SVGAnimatedNumber getPointsAtX() {
  SVGAnimatedNumber result;
  if (pointsAtXReference == null ||
      (result = (SVGAnimatedNumber)pointsAtXReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_POINTS_AT_X);
      pointsAtXReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getPointsAtY()}.
     */
    public SVGAnimatedNumber getPointsAtY() {
  SVGAnimatedNumber result;
  if (pointsAtYReference == null ||
      (result = (SVGAnimatedNumber)pointsAtYReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_POINTS_AT_Y);
      pointsAtYReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getPointsAtZ()}.
     */
    public SVGAnimatedNumber getPointsAtZ() {
  SVGAnimatedNumber result;
  if (pointsAtZReference == null ||
      (result = (SVGAnimatedNumber)pointsAtZReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_POINTS_AT_Z);
      pointsAtZReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getSpecularExponent()}.
     */
    public SVGAnimatedNumber getSpecularExponent() {
  SVGAnimatedNumber result;
  if (specularExponentReference == null ||
      (result = (SVGAnimatedNumber)specularExponentReference.get()) ==
            null) {
      result = new SVGOMAnimatedNumber(this, null,
                                             ATTR_SPECULAR_EXPONENT);
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpotLightElement#getLimitingConeAngle()}.
     */
    public SVGAnimatedNumber getLimitingConeAngle() {
  SVGAnimatedNumber result;
  if (limitingConeAngleReference == null ||
      (result = (SVGAnimatedNumber)limitingConeAngleReference.get()) ==
            null) {
      result = new SVGOMAnimatedNumber(this, null,
                                             ATTR_LIMITING_CONE_ANGLE);
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.