001/*
002 * ============================================================================
003 * Copyright © 2002-2020 by Thomas Thrien.
004 * All Rights Reserved.
005 * ============================================================================
006 *
007 * Licensed to the public under the agreements of the GNU Lesser General Public
008 * License, version 3.0 (the "License"). You may obtain a copy of the License at
009 *
010 *      http://www.gnu.org/licenses/lgpl.html
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
014 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
015 * License for the specific language governing permissions and limitations
016 * under the License.
017 */
018
019package org.tquadrat.foundation.xml.parse;
020
021import static org.apiguardian.api.API.Status.EXPERIMENTAL;
022
023import javax.xml.stream.XMLEventReader;
024
025import org.apiguardian.api.API;
026import org.tquadrat.foundation.annotation.ClassVersion;
027import org.tquadrat.foundation.xml.parse.spi.StAXParserBase;
028
029/**
030 *  Parses an XML stream to an object of type {@code T}; that object is either
031 *  provided with the constructor
032 *  {@link #StAXParser(Object)}
033 *  or will be created by an instance of
034 *  {@link XMLParseEventHandler}.<br>
035 *  <br>To start the parsing process, call
036 *  {@link #parse(XMLEventReader)}
037 *  on the instance of {@code StAXParser}.
038 *
039 *  @param  <T> The type of the target data structure.
040 *
041 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
042 *  @version $Id: StAXParser.java 820 2020-12-29 20:34:22Z tquadrat $
043 *  @since 0.0.5
044 *
045 *  @UMLGraph.link
046 */
047@ClassVersion( sourceVersion = "$Id: StAXParser.java 820 2020-12-29 20:34:22Z tquadrat $" )
048@API( status = EXPERIMENTAL, since = "0.0.5" )
049public final class StAXParser<T> extends StAXParserBase<T>
050{
051        /*-----------*\
052    ====** Constants **========================================================
053        \*-----------*/
054    /**
055     *  An empty array of {@code StAXParser} objects.
056     */
057    @SuppressWarnings( "rawtypes" )
058    public static final StAXParser [] EMPTY_StAXParser_ARRAY = new StAXParser [0];
059
060        /*--------------*\
061    ====** Constructors **=====================================================
062        \*--------------*/
063    /**
064     *  Creates a new {@code StAXParser} instance.
065     */
066    public StAXParser() { super(); }
067
068    /**
069     *  Creates a new {@code StAXParser} instance.
070     *
071     *  @param  target  The target data structure.
072     */
073    public StAXParser( final T target ) { super( target ); }
074
075        /*---------*\
076    ====** Methods **==========================================================
077        \*---------*/
078    /**
079     *  Adds the document handler.<br>
080     *  <br>This handler must create or update the target data structure.
081     *
082     *  @param  elementName The element name for the document.
083     *  @param  handler The parse event handler.
084     */
085    public final void addDocumentHandler( final String elementName, final XMLParseEventHandler<T> handler )
086    {
087        registerElementHandler( elementName, true, handler );
088    }   //  addDocumentHandler()
089
090    /**
091     *  Adds an element handler.<br>
092     *  <br>These handlers will be called from inside another parse event
093     *  handler.
094     *
095     *  @param  elementName The element name.
096     *  @param  handler The parse event handler.
097     */
098    public final void addElementHandler( final String elementName, final XMLParseEventHandler<?> handler )
099    {
100        registerElementHandler( elementName, false, handler );
101    }   //  addElementHandler()
102}
103//  class StAXParser
104
105/*
106 *  End of File
107 */