Package de.intarsys.tools.functor
Interface IDeclarationBlock
-
- All Superinterfaces:
IDeclaration
- All Known Implementing Classes:
ArgumentDeclaration
,DeclarationBlock
,DeclarationElement
,EmptyDeclarationBlock
public interface IDeclarationBlock extends IDeclaration
A group ofIDeclaration
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDeclaration[]
getDeclarations()
The array ofIDeclaration
instances in this block.int
size()
The number of declarations in this block.-
Methods inherited from interface de.intarsys.tools.functor.IDeclaration
accept, getDeclarationContext, isBlock
-
-
-
-
Method Detail
-
getDeclarations
IDeclaration[] getDeclarations()
The array ofIDeclaration
instances in this block.- Returns:
- The array of
IDeclaration
instances in this block.
-
size
int size()
The number of declarations in this block.- Returns:
- The number of declarations in this block.
-
-