コード例 #1
0
 /** Invoked when the animated value of an animatable attribute has changed. */
 public void handleAnimatedAttributeChanged(AnimatedLiveAttributeValue alav) {
   if (alav.getNamespaceURI() == null) {
     String ln = alav.getLocalName();
     if (ln.equals(SVG_CX_ATTRIBUTE)
         || ln.equals(SVG_CY_ATTRIBUTE)
         || ln.equals(SVG_R_ATTRIBUTE)) {
       buildShape(ctx, e, (ShapeNode) node);
       handleGeometryChanged();
       return;
     }
   }
   super.handleAnimatedAttributeChanged(alav);
 }