Class SVGGenericElement

All Implemented Interfaces:
AllowsConditionalProcessingAttributes, AllowsDocumentElementEventAttributes, AllowsDocumentEventAttributes, AllowsGlobalEventAttributes, AllowsGraphicalEventAttributes, AllowsPresentationAttributes, AllowsStyleAttributes, AllowsXLinkAttributes, SVGClipPath, SVGElement, SVGElementWithChildren, SVGGroup, SVGLine, SVGMarker, SVGPath, SVGPositionedMarker, SVGRectangle, SVGStyle, SVGSymbol, SVGText, SVGTSpan, SVGUse, Element, XMLElement

@ClassVersion(sourceVersion="$Id: SVGGenericElement.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=STABLE, since="0.0.5") public final class SVGGenericElement extends SVGElementAdapter
This is a generic implementation for an SVG element. This should only be used for elements that are not (yet) implemented with their own classes.

The element allows all possible children and attributes as well as text. But if it should be added to an already existing paren element, it must be registered to it first, before it could be added.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGGenericElement.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.SVGGenericElement"

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

UML Diagram for "org.tquadrat.foundation.svg.SVGGenericElement"
  • Constructor Details

    • SVGGenericElement

      SVGGenericElement(String elementName, XMLElement.Flags... flags)
      Creates a new SVGGenericElement instance.
      Parameters:
      elementName - The name of the element.
      flags - The flags that determine the behaviour of the new element.
  • Method Details

    • registerWithParent

      public final void registerWithParent(SVGElement parent)
      Registers this element as a valid child with the given parent. More precisely, it adds the XMLElementImpl.getElementName() of this element to the parent's list of valid children. This means that it is not necessary to repeat this call for other elements with the same name.
      Parameters:
      parent - The parent element.