Package compilation.analysis.semantic
Class AnnotatedBlockStatement
- java.lang.Object
-
- compilation.analysis.semantic.AnnotatedBlockStatement
-
- All Implemented Interfaces:
AnnotatedStatement
public final class AnnotatedBlockStatement extends java.lang.Object implements AnnotatedStatement
The AnnotatedBlockStatement class is used to store information about annotated block statements declared during compilation.- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description AnnotatedBlockStatement(java.util.List<AnnotatedStatement> statements)Constructs an AnnotatedBlockStatement object, initialised with the statements contents.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface compilation.analysis.semantic.AnnotatedStatement
getStatementType
-
-
-
-
Constructor Detail
-
AnnotatedBlockStatement
public AnnotatedBlockStatement(java.util.List<AnnotatedStatement> statements)
Constructs an AnnotatedBlockStatement object, initialised with the statements contents.- Parameters:
statements- The List of Statements within the braces
-
-