Examples of SVGAnimatedNumber


Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFETurbulenceElement#getBaseFrequencyY()}.
     */
    public SVGAnimatedNumber getBaseFrequencyY() {
        SVGAnimatedNumber result;
        if (baseFrequencyYReference == null ||
            (result = (SVGAnimatedNumber)baseFrequencyYReference.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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

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

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpecularLightingElement#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.SVGFESpecularLightingElement#getSpecularConstant()}.
     */
    public SVGAnimatedNumber getSpecularConstant() {
        SVGAnimatedNumber result;
        if (specularConstantReference == null ||
            (result = (SVGAnimatedNumber)specularConstantReference.get()) == null) {
            result = new SVGOMAnimatedNumber(this, null, SVG_SPECULAR_CONSTANT_ATTRIBUTE,
                                             SPECULAR_CONSTANT_DEFAULT_VALUE_PRODUCER);
            specularConstantReference = new WeakReference(result);
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFESpecularLightingElement#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);
            specularExponentReference = new WeakReference(result);
View Full Code Here

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

     * @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.SVGStopElement#getOffset()}.
     */
    public SVGAnimatedNumber getOffset() {
  SVGAnimatedNumber result;
  if (offsetReference == null ||
      (result = (SVGAnimatedNumber)offsetReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_OFFSET);
      offsetReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedNumber

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEDisplacementMapElement#getScale()}.
     */
    public SVGAnimatedNumber getScale() {
  SVGAnimatedNumber result;
  if (scaleReference == null ||
      (result = (SVGAnimatedNumber)scaleReference.get()) == null) {
      result = new SVGOMAnimatedNumber(this, null, ATTR_SCALE);
      scaleReference = 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.