001/* 002 * ============================================================================ 003 * Copyright © 2002-2023 by Thomas Thrien. 004 * All Rights Reserved. 005 * ============================================================================ 006 * Licensed to the public under the agreements of the GNU Lesser General Public 007 * License, version 3.0 (the "License"). You may obtain a copy of the License at 008 * 009 * http://www.gnu.org/licenses/lgpl.html 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 013 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 014 * License for the specific language governing permissions and limitations 015 * under the License. 016 */ 017 018package org.tquadrat.foundation.svg.internal; 019 020import static org.apiguardian.api.API.Status.INTERNAL; 021import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Id; 022import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_AltGlyphDef; 023import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Anchor; 024import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_ClipPath; 025import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_ColorProfile; 026import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Cursor; 027import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Filter; 028import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Font; 029import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_FontFace; 030import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_ForeignObject; 031import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Group; 032import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Image; 033import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Marker; 034import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Mask; 035import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Pattern; 036import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Script; 037import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Style; 038import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Switch; 039import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Text; 040import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_View; 041import static org.tquadrat.foundation.svg.type.SVGElementCategory.ANIMATION; 042import static org.tquadrat.foundation.svg.type.SVGElementCategory.DESCRIPTIVE; 043import static org.tquadrat.foundation.svg.type.SVGElementCategory.GRADIENT; 044import static org.tquadrat.foundation.svg.type.SVGElementCategory.SHAPE; 045import static org.tquadrat.foundation.svg.type.SVGElementCategory.STRUCTURAL; 046import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.ALLOWS_CHILDREN; 047import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_ATTRIBUTES; 048import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_CHILDREN; 049 050import java.util.ArrayList; 051import java.util.Collection; 052import java.util.HashSet; 053import java.util.List; 054 055import org.apiguardian.api.API; 056import org.tquadrat.foundation.annotation.ClassVersion; 057import org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes; 058import org.tquadrat.foundation.svg.AllowsGlobalEventAttributes; 059import org.tquadrat.foundation.svg.AllowsGraphicalEventAttributes; 060import org.tquadrat.foundation.svg.AllowsPresentationAttributes; 061import org.tquadrat.foundation.svg.AllowsStyleAttributes; 062import org.tquadrat.foundation.svg.SVGGroup; 063 064/** 065 * The implementation of the interface 066 * {@link SVGGroup} 067 * for the SVG {@code <g>} element. 068 * 069 * @extauthor Thomas Thrien - thomas.thrien@tquadrat.org 070 * @version $Id: SVGGroupImpl.java 1074 2023-10-02 12:05:06Z tquadrat $ 071 * @since 0.0.5 072 * 073 * @UMLGraph.link 074 */ 075@ClassVersion( sourceVersion = "$Id: SVGGroupImpl.java 1074 2023-10-02 12:05:06Z tquadrat $" ) 076@API( status = INTERNAL, since = "0.0.5" ) 077public final class SVGGroupImpl extends SVGElementImpl implements SVGGroup 078{ 079 /*--------------*\ 080 ====** Constructors **===================================================== 081 \*--------------*/ 082 /** 083 * Creates a new {@code SVGGroupImpl} instance. 084 */ 085 public SVGGroupImpl() 086 { 087 super( SVGELEMENT_Group, ALLOWS_CHILDREN, VALIDATES_ATTRIBUTES, VALIDATES_CHILDREN ); 088 089 //---* The children and attributes for the <g> element *--------------- 090 final Collection<String> childElements = new HashSet<>(); 091 childElements.addAll( ANIMATION.getElements() ); 092 childElements.addAll( DESCRIPTIVE.getElements() ); 093 childElements.addAll( SHAPE.getElements() ); 094 childElements.addAll( STRUCTURAL.getElements() ); 095 childElements.addAll( GRADIENT.getElements() ); 096 childElements.addAll( List.of( SVGELEMENT_Anchor, 097 SVGELEMENT_AltGlyphDef, SVGELEMENT_ClipPath, 098 SVGELEMENT_ColorProfile, SVGELEMENT_Cursor, SVGELEMENT_Filter, 099 SVGELEMENT_Font, SVGELEMENT_FontFace, SVGELEMENT_ForeignObject, 100 SVGELEMENT_Image, SVGELEMENT_Marker, SVGELEMENT_Mask, 101 SVGELEMENT_Pattern, SVGELEMENT_Script, SVGELEMENT_Style, 102 SVGELEMENT_Switch, SVGELEMENT_Text, SVGELEMENT_View ) ); 103 104 final Collection<String> attributes = new ArrayList<>(); 105 attributes.add( SVGATTRIBUTE_Id ); 106 attributes.addAll( CORE_ATTRIBUTES ); 107 attributes.addAll( AllowsStyleAttributes.STYLE_ATTRIBUTES ); 108 attributes.addAll( AllowsConditionalProcessingAttributes.CONDITIONALPROCESSING_ATTRIBUTES ); 109 attributes.addAll( AllowsGlobalEventAttributes.GLOBALEVENT_ATTRIBUTES ); 110 attributes.addAll( AllowsGraphicalEventAttributes.GRAPHICALEVENT_ATTRIBUTES ); 111 attributes.addAll( AllowsPresentationAttributes.PRESENTATION_ATTRIBUTES ); 112 113 updateRegistries( childElements, attributes ); 114 } // SVGGroupImpl() 115} 116// class SVGGroupImpl 117 118/* 119 * End of File 120 */