Interface AllowsConditionalProcessingAttributes

All Known Subinterfaces:
SVG, SVGClipPath, SVGGroup, SVGLine, SVGPath, SVGRectangle, SVGText, SVGTSpan, SVGUse
All Known Implementing Classes:
SVGClipPathImpl, SVGElementAdapter, SVGGenericElement, SVGGroupImpl, SVGImpl, SVGLineImpl, SVGPathImpl, SVGRectangleImpl, SVGTextImpl, SVGTSpanImpl, SVGUseImpl

@ClassVersion(sourceVersion="$Id: AllowsConditionalProcessingAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=STABLE, since="0.0.5") public sealed interface AllowsConditionalProcessingAttributes permits SVG, SVGClipPath, SVGGroup, SVGLine, SVGPath, SVGRectangle, SVGTSpan, SVGText, SVGUse
SVG elements that allow the conditional processing attributes "externalResourcesRequired", "requiredExtensions", "requiredFeatures", and "systemLanguage" will implement this interface.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: AllowsConditionalProcessingAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes"

UML Diagram for "org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes"

UML Diagram for "org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final List<String>
    The conditional processing attributes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the attribute that indicates the requirement for external resources for rendering this SVG element.
    void
    Sets a list of extensions that are required to render this SVG element.
    void
    Sets a list of features that are required to render this SVG element.
    void
    Sets a list of languages; the current SVG element will be rendered only if the current system language matches one entry of this list.
  • Field Details

  • Method Details

    • setExternalResourcesRequired

      void setExternalResourcesRequired(boolean flag)
      Sets the attribute that indicates the requirement for external resources for rendering this SVG element.
      Parameters:
      flag - true if external resources are needed, false if all required resources are local to the current context.
    • setRequiredExtensions

      void setRequiredExtensions(URI... values)
      Sets a list of extensions that are required to render this SVG element.
      Parameters:
      values - The URIs that identify the required extensions.
    • setRequiredFeatures

      void setRequiredFeatures(URI... values)
      Sets a list of features that are required to render this SVG element.
      Parameters:
      values - The URIs that identify the required features.
    • setSystemLanguage

      void setSystemLanguage(Locale... values)
      Sets a list of languages; the current SVG element will be rendered only if the current system language matches one entry of this list.
      Parameters:
      values - The allowed languages.