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.SVGATTRIBUTE_LengthAdjust; 023import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Rotate; 024import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_TextAnchor; 025import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_TextLength; 026import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Transform; 027import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_dx; 028import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_dy; 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_Anchor; 032import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Text; 033import static org.tquadrat.foundation.svg.type.SVGElementCategory.ANIMATION; 034import static org.tquadrat.foundation.svg.type.SVGElementCategory.DESCRIPTIVE; 035import static org.tquadrat.foundation.svg.type.SVGElementCategory.TEXT_CONTENT; 036 037import java.util.ArrayList; 038import java.util.Collection; 039import java.util.HashSet; 040import java.util.List; 041 042import org.apiguardian.api.API; 043import org.tquadrat.foundation.annotation.ClassVersion; 044import org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes; 045import org.tquadrat.foundation.svg.AllowsGraphicalEventAttributes; 046import org.tquadrat.foundation.svg.AllowsPresentationAttributes; 047import org.tquadrat.foundation.svg.AllowsStyleAttributes; 048import org.tquadrat.foundation.svg.SVGText; 049 050/** 051 * The implementation of the interface 052 * {@link SVGText}. 053 * 054 * @extauthor Thomas Thrien - thomas.thrien@tquadrat.org 055 * @version $Id: SVGTextImpl.java 1074 2023-10-02 12:05:06Z tquadrat $ 056 * @since 0.0.5 057 * 058 * @UMLGraph.link 059 */ 060@ClassVersion( sourceVersion = "$Id: SVGTextImpl.java 1074 2023-10-02 12:05:06Z tquadrat $" ) 061@API( status = INTERNAL, since = "0.0.5" ) 062public final class SVGTextImpl extends SVGTextBase implements SVGText 063{ 064 /*--------------*\ 065 ====** Constructors **===================================================== 066 \*--------------*/ 067 /** 068 * Creates a new {@code SVGTextImpl} instance. 069 */ 070 public SVGTextImpl() 071 { 072 super( SVGELEMENT_Text ); 073 074 //---* The children and attributes for the <text> element *------------ 075 final Collection<String> childElements = new HashSet<>(); 076 childElements.addAll( ANIMATION.getElements() ); 077 childElements.addAll( DESCRIPTIVE.getElements() ); 078 childElements.addAll( TEXT_CONTENT.getElements() ); 079 childElements.add( SVGELEMENT_Anchor ); 080 081 final Collection<String> attributes = new ArrayList<>(); 082 attributes.addAll( List.of( SVGATTRIBUTE_Id, SVGATTRIBUTE_x, 083 SVGATTRIBUTE_y, SVGATTRIBUTE_dx, SVGATTRIBUTE_dy, 084 SVGATTRIBUTE_TextAnchor, SVGATTRIBUTE_Rotate, 085 SVGATTRIBUTE_TextLength, SVGATTRIBUTE_LengthAdjust, 086 SVGATTRIBUTE_Transform ) ); 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 } // SVGTextImpl() 095} 096// class SVGTextImpl 097 098/* 099 * End of File 100 */