Tabnine Logo
AnimatableRectValue.getWidth
Code IndexAdd Tabnine to your IDE (free)

How to use
getWidth
method
in
org.apache.batik.anim.values.AnimatableRectValue

Best Java code snippets using org.apache.batik.anim.values.AnimatableRectValue.getWidth (Showing top 3 results out of 315)

origin: org.apache.xmlgraphics/batik-anim

/**
 * Updates the animated value with the given {@link AnimatableValue}.
 */
protected void updateAnimatedValue(AnimatableValue val) {
  if (val == null) {
    hasAnimVal = false;
  } else {
    hasAnimVal = true;
    AnimatableRectValue animRect = (AnimatableRectValue) val;
    if (animVal == null) {
      animVal = new AnimSVGRect();
    }
    animVal.setAnimatedValue(animRect.getX(), animRect.getY(),
                 animRect.getWidth(), animRect.getHeight());
  }
  fireAnimatedAttributeListeners();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Updates the animated value with the given {@link AnimatableValue}.
 */
protected void updateAnimatedValue(AnimatableValue val) {
  if (val == null) {
    hasAnimVal = false;
  } else {
    hasAnimVal = true;
    AnimatableRectValue animRect = (AnimatableRectValue) val;
    if (animVal == null) {
      animVal = new AnimSVGRect();
    }
    animVal.setAnimatedValue(animRect.getX(), animRect.getY(),
                 animRect.getWidth(), animRect.getHeight());
  }
  fireAnimatedAttributeListeners();
}
origin: apache/batik

/**
 * Updates the animated value with the given {@link AnimatableValue}.
 */
protected void updateAnimatedValue(AnimatableValue val) {
  if (val == null) {
    hasAnimVal = false;
  } else {
    hasAnimVal = true;
    AnimatableRectValue animRect = (AnimatableRectValue) val;
    if (animVal == null) {
      animVal = new AnimSVGRect();
    }
    animVal.setAnimatedValue(animRect.getX(), animRect.getY(),
                 animRect.getWidth(), animRect.getHeight());
  }
  fireAnimatedAttributeListeners();
}
org.apache.batik.anim.valuesAnimatableRectValuegetWidth

Javadoc

Returns the width.

Popular methods of AnimatableRectValue

  • <init>
    Creates a new AnimatableRectValue with one number.
  • getHeight
    Returns the height.
  • getX
    Returns the x coordinate.
  • getY
    Returns the y coordinate.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (Timer)
  • Menu (java.awt)
  • Kernel (java.awt.image)
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top plugins for Android Studio
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