Examples of SVGAnimatedNumber


Examples of org.w3c.dom.svg.SVGAnimatedNumber

     * @param val The value if the attribute is not specified.
     */
    protected SVGAnimatedNumber getAnimatedNumberAttribute(String ns,
                                                           String ln,
                                                           float  val) {
        SVGAnimatedNumber result =
            (SVGAnimatedNumber)getLiveAttributeValue(ns, ln);
        if (result == null) {
            result = new SVGOMAnimatedNumber(this, ns, ln, val);
            putLiveAttributeValue(ns, ln, (LiveAttributeValue)result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

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, SVG_AZIMUTH_ATTRIBUTE,
                                             AZIMUTH_DEFAULT_VALUE_PRODUCER);
            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, SVG_ELEVATION_ATTRIBUTE,
                                             ELEVATION_DEFAULT_VALUE_PRODUCER);
            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, SVG_X_ATTRIBUTE,
                                             X_DEFAULT_VALUE_PRODUCER);
            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, SVG_Y_ATTRIBUTE,
                                             Y_DEFAULT_VALUE_PRODUCER);
            yReference = 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.