Examples of SVGAnimatedNumber


Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEPointLightElement#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.SVGFEPointLightElement#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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEPointLightElement#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.SVGFECompositeElement#getK1()}.
     */
    public SVGAnimatedNumber getK1() {
        SVGAnimatedNumber result;
        if (k1Reference == null ||
            (result = (SVGAnimatedNumber)k1Reference.get()) == null) {
            result = new SVGOMAnimatedNumber(this, null, SVG_K1_ATTRIBUTE,
                                             K1_DEFAULT_VALUE_PRODUCER);
            k1Reference = new WeakReference(result);
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFETurbulenceElement#getBaseFrequencyX()}.
     */
    public SVGAnimatedNumber getBaseFrequencyX() {
        SVGAnimatedNumber result;
        if (baseFrequencyXReference == null ||
            (result = (SVGAnimatedNumber)baseFrequencyXReference.get()) == null) {
            result = new SVGAnimatedNumber() {
                public float getBaseVal() {
                    Attr a = getAttributeNodeNS(null, SVG_BASE_FREQUENCY_ATTRIBUTE);
                    if (a != null) {
                        StringTokenizer st = new StringTokenizer(a.getValue(), " ");
                        if (st.hasMoreTokens()) {
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.