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_Class;
022import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Height;
023import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Id;
024import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_PathLength;
025import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Style;
026import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Width;
027import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_rx;
028import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_ry;
029import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_x;
030import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_y;
031import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Rectangle;
032import static org.tquadrat.foundation.svg.type.SVGElementCategory.ANIMATION;
033import static org.tquadrat.foundation.svg.type.SVGElementCategory.DESCRIPTIVE;
034import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.ALLOWS_CHILDREN;
035import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_ATTRIBUTES;
036import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_CHILDREN;
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.AllowsGlobalEventAttributes;
047import org.tquadrat.foundation.svg.AllowsGraphicalEventAttributes;
048import org.tquadrat.foundation.svg.AllowsPresentationAttributes;
049import org.tquadrat.foundation.svg.AllowsStyleAttributes;
050import org.tquadrat.foundation.svg.SVGRectangle;
051
052/**
053 *  The implementation of the interface
054 *  {@link SVGRectangle}
055 *  for the SVG {@code <rect>} element.
056 *
057 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
058 *  @version $Id: SVGRectangleImpl.java 820 2020-12-29 20:34:22Z tquadrat $
059 *  @since 0.0.5
060 *
061 *  @UMLGraph.link
062 */
063@ClassVersion( sourceVersion = "$Id: SVGRectangleImpl.java 820 2020-12-29 20:34:22Z tquadrat $" )
064@API( status = INTERNAL, since = "0.0.5" )
065public final class SVGRectangleImpl extends SVGElementImpl implements SVGRectangle
066{
067        /*--------------*\
068    ====** Constructors **=====================================================
069        \*--------------*/
070    /**
071     *  Creates a new {@code SVGRectangleImpl} instance.
072     */
073    public SVGRectangleImpl()
074    {
075        super( SVGELEMENT_Rectangle, ALLOWS_CHILDREN, VALIDATES_ATTRIBUTES, VALIDATES_CHILDREN );
076
077        //---* The children and attributes for the <marker> element *----------
078        final Collection<String> childElements = new HashSet<>();
079        childElements.addAll( ANIMATION.getElements() );
080        childElements.addAll( DESCRIPTIVE.getElements() );
081
082        final Collection<String> attributes = new ArrayList<>();
083        attributes.addAll( List.of( SVGATTRIBUTE_Id,
084            SVGATTRIBUTE_x, SVGATTRIBUTE_y, SVGATTRIBUTE_Width,
085            SVGATTRIBUTE_Height, SVGATTRIBUTE_rx, SVGATTRIBUTE_ry,
086            SVGATTRIBUTE_PathLength, SVGATTRIBUTE_Class, SVGATTRIBUTE_Style ) );
087        attributes.addAll( CORE_ATTRIBUTES );
088        attributes.addAll( AllowsStyleAttributes.STYLE_ATTRIBUTES );
089        attributes.addAll( AllowsConditionalProcessingAttributes.CONDITIONALPROCESSING_ATTRIBUTES );
090        attributes.addAll( AllowsGlobalEventAttributes.GLOBALEVENT_ATTRIBUTES );
091        attributes.addAll( AllowsGraphicalEventAttributes.GRAPHICALEVENT_ATTRIBUTES );
092        attributes.addAll( AllowsPresentationAttributes.PRESENTATION_ATTRIBUTES );
093
094        updateRegistries( childElements, attributes );
095    }   //  SVGRectangleImpl()
096}
097//  class SVGRectangleImpl
098
099/*
100 *  End of File
101 */