Examples of SVGAnimatedString


Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements { @link SVGFEConvolveMatrixElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
        SVGAnimatedString result;
        if (inReference == null ||
            (result = (SVGAnimatedString)inReference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
            inReference = new WeakReference(result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEColorMatrixElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
  SVGAnimatedString result;
  if (inReference == null ||
      (result = (SVGAnimatedString)inReference.get()) == null) {
      result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
      inReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGAElement#getTarget()}.
     */
    public SVGAnimatedString getTarget() {
  SVGAnimatedString result;
  if (targetReference == null ||
      (result = (SVGAnimatedString)targetReference.get()) == null) {
      result = new SVGOMAnimatedString(this, null, SVG_TARGET_ATTRIBUTE);
      targetReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes#getResult()}.
     */
    public SVGAnimatedString getResult() {
        SVGAnimatedString result;
        if (resultReference == null ||
            (result = (SVGAnimatedString)resultReference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_RESULT_ATTRIBUTE);
            resultReference = new WeakReference(result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFECompositeElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
        SVGAnimatedString result;
        if (inReference == null ||
            (result = (SVGAnimatedString)inReference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
            inReference = new WeakReference(result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFECompositeElement#getIn2()}.
     */
    public SVGAnimatedString getIn2() {
        SVGAnimatedString result;
        if (in2Reference == null ||
            (result = (SVGAnimatedString)in2Reference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_IN2_ATTRIBUTE);
            in2Reference = new WeakReference(result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEComponentTransferElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
  SVGAnimatedString result;
  if (inReference == null ||
      (result = (SVGAnimatedString)inReference.get()) == null) {
      result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
      inReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEOffsetElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
  SVGAnimatedString result;
  if (inReference == null ||
      (result = (SVGAnimatedString)inReference.get()) == null) {
      result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
      inReference = new WeakReference(result);
  }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEDisplacementMapElement#getIn1()}.
     */
    public SVGAnimatedString getIn1() {
        SVGAnimatedString result;
        if (inReference == null ||
            (result = (SVGAnimatedString)inReference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_IN_ATTRIBUTE);
            inReference = new WeakReference(result);
        }
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * <b>DOM</b>: Implements {@link
     * SVGFEDisplacementMapElement#getIn2()}.
     */
    public SVGAnimatedString getIn2() {
        SVGAnimatedString result;
        if (in2Reference == null ||
            (result = (SVGAnimatedString)in2Reference.get()) == null) {
            result = new SVGOMAnimatedString(this, null, SVG_IN2_ATTRIBUTE);
            in2Reference = 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.