Example usage for org.apache.wicket.extensions.markup.html.repeater.tree.nested BranchItem BranchItem

List of usage examples for org.apache.wicket.extensions.markup.html.repeater.tree.nested BranchItem BranchItem

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.repeater.tree.nested BranchItem BranchItem.

Prototype

public BranchItem(String id, int index, IModel<T> model) 

Source Link

Usage

From source file:org.efaps.ui.wicket.components.tree.SubElement.java

License:Apache License

/**
 * @param _wicketId wicket id for the branch item
 * @param _index    index for the item//from w w w .j  av  a2s  .  co m
 * @param _model    model for the item
 * @return new BrancheItem
 */
protected BranchItem<UIStructurBrowser> newBranchItem(final String _wicketId, final int _index,
        final IModel<UIStructurBrowser> _model) {
    return new BranchItem<UIStructurBrowser>(_wicketId, _index, _model);
}