Speed up StmtContextUtils.getModuleQNameByPrefix()
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / StatementFactory.java
1 /*
2  * Copyright (c) 2015 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 package org.opendaylight.yangtools.yang.parser.spi.meta;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13
14 public interface StatementFactory<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>> {
15     /**
16      * Create a {@link DeclaredStatement} for specified context.
17      *
18      * @param ctx Statement context
19      * @return A declared statement instance.
20      */
21     @NonNull D createDeclared(@NonNull StmtContext<A, D, ?> ctx);
22
23     /**
24      * Create a {@link EffectiveStatement} for specified context.
25      *
26      * @param ctx Statement context
27      * @return An effective statement instance.
28      */
29     @NonNull E createEffective(@NonNull StmtContext<A, D, E> ctx);
30 }