Tabnine Logo
SVGOMElement.getLiveAttributeValue
Code IndexAdd Tabnine to your IDE (free)

How to use
getLiveAttributeValue
method
in
org.apache.batik.anim.dom.SVGOMElement

Best Java code snippets using org.apache.batik.anim.dom.SVGOMElement.getLiveAttributeValue (Showing top 6 results out of 315)

origin: apache/batik

/**
 * Updates an attribute value in this target.
 */
public void updateAttributeValue(String ns, String ln,
                 AnimatableValue val) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  ((AbstractSVGAnimatedValue) a).updateAnimatedValue(val);
  // XXX Override this for NumberOptionalNumber values
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Updates an attribute value in this target.
 */
public void updateAttributeValue(String ns, String ln,
                 AnimatableValue val) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  ((AbstractSVGAnimatedValue) a).updateAnimatedValue(val);
  // XXX Override this for NumberOptionalNumber values
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Returns the underlying value of an animatable XML attribute.
 */
public AnimatableValue getUnderlyingValue(String ns, String ln) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  if (!(a instanceof AnimatedLiveAttributeValue)) {
    return null;
  }
  return ((AnimatedLiveAttributeValue) a).getUnderlyingValue(this);
  // XXX Override this for NumberOptionalNumber values
}
origin: org.apache.xmlgraphics/batik-anim

/**
 * Updates an attribute value in this target.
 */
public void updateAttributeValue(String ns, String ln,
                 AnimatableValue val) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  ((AbstractSVGAnimatedValue) a).updateAnimatedValue(val);
  // XXX Override this for NumberOptionalNumber values
}
origin: org.apache.xmlgraphics/batik-anim

/**
 * Returns the underlying value of an animatable XML attribute.
 */
public AnimatableValue getUnderlyingValue(String ns, String ln) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  if (!(a instanceof AnimatedLiveAttributeValue)) {
    return null;
  }
  return ((AnimatedLiveAttributeValue) a).getUnderlyingValue(this);
  // XXX Override this for NumberOptionalNumber values
}
origin: apache/batik

/**
 * Returns the underlying value of an animatable XML attribute.
 */
public AnimatableValue getUnderlyingValue(String ns, String ln) {
  LiveAttributeValue a = getLiveAttributeValue(ns, ln);
  if (!(a instanceof AnimatedLiveAttributeValue)) {
    return null;
  }
  return ((AnimatedLiveAttributeValue) a).getUnderlyingValue(this);
  // XXX Override this for NumberOptionalNumber values
}
org.apache.batik.anim.domSVGOMElementgetLiveAttributeValue

Popular methods of SVGOMElement

  • setSVGContext
    Sets the SVG context to use to get SVG specific informations.
  • getAttributeNS
  • getNodeName
    DOM: Implements Node#getNodeName().
  • getSVGContext
    Returns the SVG context used to get SVG specific informations.
  • setAttributeNS
  • addTargetListener
    Adds a listener for changes to the given attribute value.
  • copyInto
    Copy the fields of the current node into the given node.
  • createDOMException
  • createLiveAnimatedNumber
    Creates a new SVGOMAnimatedNumber that can be parsed as a percentage and stores it in this element's
  • createSVGException
    Creates an SVGException with the appropriate error message.
  • deepCopyInto
    Deeply copy the fields of the current node into the given node.
  • deepExport
    Deeply exports this node to the given document.
  • deepCopyInto,
  • deepExport,
  • export,
  • fireBaseAttributeListeners,
  • getAttributeNodeNS,
  • getAttributeType,
  • getCascadedXMLBase,
  • getCurrentDocument,
  • getFirstChild

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • String (java.lang)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Table (org.hibernate.mapping)
    A relational table
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now