001/*
002 * ============================================================================
003 * Copyright © 2002-2020 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.SVGATTRIBUTE_LengthAdjust;
023import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Rotate;
024import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_TextLength;
025import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_dx;
026import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_dy;
027import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_x;
028import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_y;
029import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_AltGlyph;
030import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Anchor;
031import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Animate;
032import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_AnimateColor;
033import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Set;
034import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_TRef;
035import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_TSpan;
036import static org.tquadrat.foundation.svg.type.SVGElementCategory.DESCRIPTIVE;
037
038import java.util.ArrayList;
039import java.util.Collection;
040import java.util.HashSet;
041import java.util.List;
042
043import org.apiguardian.api.API;
044import org.tquadrat.foundation.annotation.ClassVersion;
045import org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes;
046import org.tquadrat.foundation.svg.AllowsGraphicalEventAttributes;
047import org.tquadrat.foundation.svg.AllowsPresentationAttributes;
048import org.tquadrat.foundation.svg.AllowsStyleAttributes;
049import org.tquadrat.foundation.svg.SVGTSpan;
050
051/**
052 *  The implementation of the interface
053 *  {@link SVGTSpan}.
054 *
055 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
056 *  @version $Id: SVGTSpanImpl.java 820 2020-12-29 20:34:22Z tquadrat $
057 *  @since 0.0.5
058 *
059 *  @UMLGraph.link
060 */
061@ClassVersion( sourceVersion = "$Id: SVGTSpanImpl.java 820 2020-12-29 20:34:22Z tquadrat $" )
062@API( status = INTERNAL, since = "0.0.5" )
063public final class SVGTSpanImpl extends SVGTextBase implements SVGTSpan
064{
065        /*--------------*\
066    ====** Constructors **=====================================================
067        \*--------------*/
068    /**
069     *  Creates a new {@code SVGTSpanImpl} instance.
070     */
071    public SVGTSpanImpl()
072    {
073        super( SVGELEMENT_TSpan );
074
075        //---* The children and attributes for the <tspan> element *-----------
076        final Collection<String> childElements = new HashSet<>();
077        childElements.addAll( DESCRIPTIVE.getElements() );
078        childElements.addAll( List.of( SVGELEMENT_Anchor, SVGELEMENT_AltGlyph,
079            SVGELEMENT_Animate, SVGELEMENT_AnimateColor, SVGELEMENT_Set,
080            SVGELEMENT_TRef, SVGELEMENT_TSpan ) );
081
082        final Collection<String> attributes = new ArrayList<>();
083        attributes.addAll( List.of( SVGATTRIBUTE_Id, SVGATTRIBUTE_x,
084            SVGATTRIBUTE_y, SVGATTRIBUTE_dx, SVGATTRIBUTE_dy,
085            SVGATTRIBUTE_Rotate, SVGATTRIBUTE_TextLength,
086            SVGATTRIBUTE_LengthAdjust ) );
087        attributes.addAll( AllowsConditionalProcessingAttributes.CONDITIONALPROCESSING_ATTRIBUTES );
088        attributes.addAll( CORE_ATTRIBUTES );
089        attributes.addAll( AllowsGraphicalEventAttributes.GRAPHICALEVENT_ATTRIBUTES );
090        attributes.addAll( AllowsStyleAttributes.STYLE_ATTRIBUTES );
091        attributes.addAll( AllowsPresentationAttributes.PRESENTATION_ATTRIBUTES );
092
093        updateRegistries( childElements, attributes );
094    }   //  SVGTSpanImpl()
095}
096//  class SVGTSpanImpl
097
098/*
099 *  End of File
100 */