Interface BoundStmtCtxCompat<A,D extends DeclaredStatement<A>>
-
- Type Parameters:
A
- Argument typeD
- Class representing declared version of this statement
- All Superinterfaces:
BoundStmtCtx<A>
,CommonStmtCtx
,StmtContextCompat
- All Known Subinterfaces:
EffectiveStmtCtx.Current<A,D>
,RootStmtContext<A,D,E>
,RootStmtContext.Mutable<A,D,E>
,StmtContext<A,D,E>
,StmtContext.Mutable<A,D,E>
- All Known Implementing Classes:
RootStatementContext
,StatementContextBase
@Beta public interface BoundStmtCtxCompat<A,D extends DeclaredStatement<A>> extends BoundStmtCtx<A>, StmtContextCompat
Intermediate compatibility interface betweenStmtContext
andEffectiveStmtCtx.Current
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull D
declared()
Returns theDeclaredStatement
view of this statement.-
Methods inherited from interface org.opendaylight.yangtools.yang.parser.spi.meta.BoundStmtCtx
argument, findSubstatementArgument, getArgument, hasSubstatement, yangVersion
-
Methods inherited from interface org.opendaylight.yangtools.yang.parser.spi.meta.CommonStmtCtx
getRawArgument, origin, producesDeclared, producesEffective, publicDefinition, rawArgument, sourceReference
-
Methods inherited from interface org.opendaylight.yangtools.yang.parser.spi.meta.StmtContextCompat
history
-
-
-
-
Method Detail
-
declared
@NonNull D declared()
Returns theDeclaredStatement
view of this statement.
-
-