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.lang.Objects.requireNotEmptyArgument; 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_Reference; 025import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_Width; 026import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_x; 027import static org.tquadrat.foundation.svg.SVGUtils.SVGATTRIBUTE_y; 028import static org.tquadrat.foundation.svg.SVGUtils.SVGELEMENT_Use; 029import static org.tquadrat.foundation.svg.type.SVGElementCategory.ANIMATION; 030import static org.tquadrat.foundation.svg.type.SVGElementCategory.DESCRIPTIVE; 031import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.ALLOWS_CHILDREN; 032import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_ATTRIBUTES; 033import static org.tquadrat.foundation.xml.builder.XMLElement.Flags.VALIDATES_CHILDREN; 034 035import java.net.URI; 036import java.util.ArrayList; 037import java.util.Collection; 038import java.util.HashSet; 039import java.util.List; 040 041import org.apiguardian.api.API; 042import org.tquadrat.foundation.annotation.ClassVersion; 043import org.tquadrat.foundation.svg.AllowsConditionalProcessingAttributes; 044import org.tquadrat.foundation.svg.AllowsGraphicalEventAttributes; 045import org.tquadrat.foundation.svg.AllowsPresentationAttributes; 046import org.tquadrat.foundation.svg.AllowsXLinkAttributes; 047import org.tquadrat.foundation.svg.SVGElement; 048import org.tquadrat.foundation.svg.SVGUse; 049 050/** 051 * The implementation for the interface 052 * {@link SVGUse} 053 * for the {@code <use>} element. 054 * 055 * @extauthor Thomas Thrien - thomas.thrien@tquadrat.org 056 * @version $Id: SVGUseImpl.java 820 2020-12-29 20:34:22Z tquadrat $ 057 * @since 0.0.5 058 * 059 * @UMLGraph.link 060 */ 061@ClassVersion( sourceVersion = "$Id: SVGUseImpl.java 820 2020-12-29 20:34:22Z tquadrat $" ) 062@API( status = INTERNAL, since = "0.0.5" ) 063public final class SVGUseImpl extends SVGElementImpl implements SVGUse 064{ 065 /*--------------*\ 066 ====** Constructors **===================================================== 067 \*--------------*/ 068 /** 069 * Creates a new {@code SVGUseImpl} instance. 070 * 071 * @param reference The reference to the cloned element. 072 */ 073 public SVGUseImpl( final URI reference ) 074 { 075 super( SVGELEMENT_Use, ALLOWS_CHILDREN, VALIDATES_ATTRIBUTES, VALIDATES_CHILDREN ); 076 077 //---* The children and attributes for the <use> 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, SVGATTRIBUTE_x, 084 SVGATTRIBUTE_y, SVGATTRIBUTE_Width, SVGATTRIBUTE_Height, 085 SVGATTRIBUTE_Reference ) ); 086 attributes.addAll( AllowsConditionalProcessingAttributes.CONDITIONALPROCESSING_ATTRIBUTES ); 087 attributes.addAll( SVGElement.CORE_ATTRIBUTES ); 088 attributes.addAll( AllowsGraphicalEventAttributes.GRAPHICALEVENT_ATTRIBUTES ); 089 attributes.addAll( AllowsPresentationAttributes.PRESENTATION_ATTRIBUTES ); 090 attributes.addAll( AllowsXLinkAttributes.XLINK_ATTRIBUTES ); 091 092 updateRegistries( childElements, attributes ); 093 094 setReference( requireNotEmptyArgument( reference, "reference" ) ); 095 } // SVGUseImpl() 096} 097// class SVGUseImpl 098 099/* 100 * End of File 101 */