public interface XBBlockDef
| Modifier and Type | Method and Description |
|---|---|
long |
getParamCount()
Get count of parameter's declarations.
|
XBParamDecl |
getParamDecl(int index)
Get specific parameter declaration.
|
java.util.List<XBParamDecl> |
getParamDecls()
Get list of parameters in order of appearance.
|
XBTBlock |
getParameter(XBTBlock block,
int index)
Get n-th parameter of the given block.
|
int |
getParametersCount(XBTBlock block)
Get count of parameters defined in given block.
|
java.util.List<XBRevisionDef> |
getRevisionDefs()
Get list of revisions in order of appliance.
|
void |
setParameter(XBTEditableBlock block,
int index,
XBTBlock parameter)
Set n-th parameter of the given block.
|
java.util.List<XBParamDecl> getParamDecls()
XBParamDecl getParamDecl(int index)
long getParamCount()
java.util.List<XBRevisionDef> getRevisionDefs()
XBTBlock getParameter(XBTBlock block, int index)
block - block to get parameter fromindex - index of the requested parametervoid setParameter(XBTEditableBlock block, int index, XBTBlock parameter)
block - block to modify parameter inindex - index of parameter to modifyparameter - parameter contentint getParametersCount(XBTBlock block)
block - block to get count of parameters from