Examples of SVGAnimatedNumber


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, SVG_Z_ATTRIBUTE,
                                             Z_DEFAULT_VALUE_PRODUCER);
            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, SVG_POINTS_AT_X_ATTRIBUTE,
                                             POINTS_AT_X_DEFAULT_VALUE_PRODUCER);
            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, SVG_POINTS_AT_Y_ATTRIBUTE,
                                             POINTS_AT_Y_DEFAULT_VALUE_PRODUCER);
            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, SVG_POINTS_AT_Z_ATTRIBUTE,
                                             POINTS_AT_Z_DEFAULT_VALUE_PRODUCER);
            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,
                                             SVG_SPECULAR_EXPONENT_ATTRIBUTE,
                                             SPECULAR_EXPONENT_DEFAULT_VALUE_PRODUCER);
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,
                                             SVG_LIMITING_CONE_ANGLE_ATTRIBUTE,
                                             LIMITING_CONE_ANGLE_DEFAULT_VALUE_PRODUCER);
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEGaussianBlurElement#getStdDeviationY()}.
     */
    public SVGAnimatedNumber getStdDeviationY() {
        SVGAnimatedNumber result;
        if (stdDeviationYReference == null ||
            (result = (SVGAnimatedNumber)stdDeviationYReference.get()) == null) {
            result = new SVGAnimatedNumber() {
                public float getBaseVal() {
                    Attr a = getAttributeNodeNS(null, SVG_STD_DEVIATION_ATTRIBUTE);
                    if (a != null) {
                        StringTokenizer st = new StringTokenizer(a.getValue(), " ");
                        if (st.hasMoreTokens()) {
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

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, SVG_DIVISOR_ATTRIBUTE, null);
            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.