Package org.apache.batik.dom.svg

Source Code of org.apache.batik.dom.svg.SVGOMFEDistantLightElement

/*****************************************************************************
* Copyright (C) The Apache Software Foundation. All rights reserved.        *
* ------------------------------------------------------------------------- *
* This software is published under the terms of the Apache Software License *
* version 1.1, a copy of which has been included with this distribution in  *
* the LICENSE file.                                                         *
*****************************************************************************/

package org.apache.batik.dom.svg;

import java.lang.ref.WeakReference;

import org.apache.batik.dom.AbstractDocument;
import org.w3c.dom.Node;
import org.w3c.dom.svg.SVGAnimatedNumber;
import org.w3c.dom.svg.SVGFEDistantLightElement;

/**
* This class implements {@link org.w3c.dom.svg.SVGFEDistantLightElement}.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEDistantLightElement.java,v 1.6 2001/03/26 13:01:38 tkormann Exp $
*/
public class SVGOMFEDistantLightElement
    extends    SVGOMElement
    implements SVGFEDistantLightElement {

    /**
     * The DefaultAttributeValueProducer for azimuth.
     */
    protected final static DefaultAttributeValueProducer
        AZIMUTH_DEFAULT_VALUE_PRODUCER =
        new DefaultAttributeValueProducer() {
                public String getDefaultAttributeValue() {
                    return SVG_FE_DISTANT_LIGHT_AZIMUTH_DEFAULT_VALUE;
                }
            };

    /**
     * The DefaultAttributeValueProducer for elevation.
     */
    protected final static DefaultAttributeValueProducer
        ELEVATION_DEFAULT_VALUE_PRODUCER =
        new DefaultAttributeValueProducer() {
                public String getDefaultAttributeValue() {
                    return SVG_FE_DISTANT_LIGHT_ELEVATION_DEFAULT_VALUE;
                }
            };

    /**
     * The reference to the azimuth attribute.
     */
    protected transient WeakReference azimuthReference;

    /**
     * The reference to the elevation attribute.
     */
    protected transient WeakReference elevationReference;

    /**
     * Creates a new SVGOMFEDistantLightElement object.
     */
    protected SVGOMFEDistantLightElement() {
    }

    /**
     * Creates a new SVGOMFEDistantLightElement object.
     * @param prefix The namespace prefix.
     * @param owner The owner document.
     */
    public SVGOMFEDistantLightElement(String prefix,
                                      AbstractDocument owner) {
        super(prefix, owner);
    }

    /**
     * <b>DOM</b>: Implements {@link org.w3c.dom.Node#getLocalName()}.
     */
    public String getLocalName() {
        return SVG_FE_DISTANT_LIGHT_TAG;
    }

    /**
     * <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, SVG_AZIMUTH_ATTRIBUTE,
                                             AZIMUTH_DEFAULT_VALUE_PRODUCER);
            azimuthReference = new WeakReference(result);
        }
        return result;
    }

    /**
     * <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, SVG_ELEVATION_ATTRIBUTE,
                                             ELEVATION_DEFAULT_VALUE_PRODUCER);
            elevationReference = new WeakReference(result);
        }
        return result;
    }

    /**
     * Returns a new uninitialized instance of this object's class.
     */
    protected Node newNode() {
        return new SVGOMFEDistantLightElement();
    }
}
TOP

Related Classes of org.apache.batik.dom.svg.SVGOMFEDistantLightElement

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.