Package org.w3c.dom.svg

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, ATTR_SURFACE_SCALE);
      surfaceScaleReference = new WeakReference(result);
  }
View Full Code Here


    /**
     * <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, ATTR_SURFACE_SCALE);
      diffuseConstantReference = new WeakReference(result);
View Full Code Here

    /**
     * <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, ATTR_K1);
      k1Reference = new WeakReference(result);
  }
View Full Code Here

    /**
     * <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, ATTR_K2);
      k2Reference = new WeakReference(result);
  }
View Full Code Here

    /**
     * <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, ATTR_K3);
      k3Reference = new WeakReference(result);
  }
View Full Code Here

    /**
     * <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, ATTR_K4);
      k4Reference = new WeakReference(result);
  }
View Full Code Here

    /**
     * <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

    /**
     * <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

    /**
     * <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

    /**
     * <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

TOP

Related Classes of org.w3c.dom.svg.SVGAnimatedNumber

Copyright © 2018 www.massapicom. 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.