* Starting from the currently selected node, we sort the currently selected node's
* children according to its form (Data Constructor, Supercombinator, Class Method, ...)
* @param treeNode the node below which all entities will be sorted.
*/
public void sortByForm(BrowserTreeNode treeNode) {
sortByX(treeNode, new GemFormSorter());
}