Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-parser-reactor / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / package-info.java
1 /*
2  * Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 /**
10  * Contains the implementation of the parser reactor
11  * {@link org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor}.
12  *
13  * <p>
14  * Classes provided by this package are responsible for performing the essential parsing processes and building the
15  * schema context {@link org.opendaylight.yangtools.yang.model.api.SchemaContext} as the result of the parsing process.
16  *
17  * <p>
18  * This package also contains:
19  * </p>
20  * <ul>
21  * <li> implementation of statement context which provides the information necessary for creation of declared and
22  * effective statements</li>
23  * <li> entry point to the parsing process provided by the cross source statement reactor
24  * {@link org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor}</li>
25  * </ul>
26  */
27 package org.opendaylight.yangtools.yang.parser.stmt.reactor;