Example usage for com.liferay.portal.kernel.util TreeNode getChildValues

List of usage examples for com.liferay.portal.kernel.util TreeNode getChildValues

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util TreeNode getChildValues.

Prototype

public List<T> getChildValues() 

Source Link

Usage

From source file:com.liferay.portlet.messageboards.model.impl.MBCategoryDisplayImpl.java

License:Open Source License

public List<MBCategory> getCategories(MBCategory category) {
    TreeNode<MBCategory> node = _categoryNodesMap.get(category.getCategoryId());

    return node.getChildValues();
}