* {@inheritDoc}
*/
public boolean getChildNodesDataByPage(NodeData parent, int fromOrderNum, int toOrderNum, List<NodeData> childs)
throws RepositoryException
{
Statistics s = ALL_STATISTICS.get(GET_CHILD_NODES_DATA_BY_PAGE_DESCR);
try
{
s.begin();
return wcs.getChildNodesDataByPage(parent, fromOrderNum, toOrderNum, childs);
}
finally
{
s.end();
}
}