Interface ExtendedTraitAccess

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getAttributeType​(java.lang.String ns, java.lang.String ln)
      Returns the SVG type of the given XML attribute.
      int getPropertyType​(java.lang.String pn)
      Returns the SVG type of the given CSS property.
      boolean hasProperty​(java.lang.String pn)
      Returns whether the given CSS property is available on this element.
      boolean hasTrait​(java.lang.String ns, java.lang.String ln)
      Returns whether the given trait is available on this element.
      boolean isAttributeAdditive​(java.lang.String ns, java.lang.String ln)
      Returns whether the given XML attribute is additive.
      boolean isAttributeAnimatable​(java.lang.String ns, java.lang.String ln)
      Returns whether the given XML attribute is animatable.
      boolean isPropertyAdditive​(java.lang.String pn)
      Returns whether the given CSS property is additive.
      boolean isPropertyAnimatable​(java.lang.String pn)
      Returns whether the given CSS property is animatable.
      boolean isTraitAdditive​(java.lang.String ns, java.lang.String tn)
      Returns whether the given trait is additive.
      boolean isTraitAnimatable​(java.lang.String ns, java.lang.String tn)
      Returns whether the given trait is animatable.
    • Method Detail

      • hasProperty

        boolean hasProperty​(java.lang.String pn)
        Returns whether the given CSS property is available on this element.
      • hasTrait

        boolean hasTrait​(java.lang.String ns,
                         java.lang.String ln)
        Returns whether the given trait is available on this element.
      • isPropertyAnimatable

        boolean isPropertyAnimatable​(java.lang.String pn)
        Returns whether the given CSS property is animatable.
      • isAttributeAnimatable

        boolean isAttributeAnimatable​(java.lang.String ns,
                                      java.lang.String ln)
        Returns whether the given XML attribute is animatable.
      • isPropertyAdditive

        boolean isPropertyAdditive​(java.lang.String pn)
        Returns whether the given CSS property is additive.
      • isAttributeAdditive

        boolean isAttributeAdditive​(java.lang.String ns,
                                    java.lang.String ln)
        Returns whether the given XML attribute is additive.
      • isTraitAnimatable

        boolean isTraitAnimatable​(java.lang.String ns,
                                  java.lang.String tn)
        Returns whether the given trait is animatable.
      • isTraitAdditive

        boolean isTraitAdditive​(java.lang.String ns,
                                java.lang.String tn)
        Returns whether the given trait is additive.
      • getPropertyType

        int getPropertyType​(java.lang.String pn)
        Returns the SVG type of the given CSS property. Must return one of the TYPE_* constants defined in SVGTypes.
      • getAttributeType

        int getAttributeType​(java.lang.String ns,
                             java.lang.String ln)
        Returns the SVG type of the given XML attribute. Must return one of the TYPE_* constants defined in SVGTypes.