Examples of SVGAnimatedString


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

Examples of org.w3c.dom.svg.SVGAnimatedString

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

Examples of org.w3c.dom.svg.SVGAnimatedString

    /**
     * To implement {@link org.w3c.dom.svg.SVGURIReference#getHref()}.
     */
    public SVGAnimatedString getHref(Element elt) {
  SVGAnimatedString result;
  if (hrefReference == null ||
      (result = (SVGAnimatedString)hrefReference.get()) == null) {
      result = new SVGOMAnimatedString
                (elt, XLinkSupport.XLINK_NAMESPACE_URI, ATTR_HREF);
      hrefReference = new WeakReference(result);
View Full Code Here

Examples of org.w3c.dom.svg.SVGAnimatedString

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

Examples of org.w3c.dom.svg.SVGAnimatedString

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

Examples of org.w3c.dom.svg.SVGAnimatedString

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

Examples of org.w3c.dom.svg.SVGAnimatedString

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