Package org.w3c.dom.svg

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


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

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

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

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

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

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

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

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

    /**
     * <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, ATTR_OFFSET);
      offsetReference = 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.