com.jwebmp.plugins.jstree.interfaces.IJSTreeList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-jstree Show documentation
Show all versions of jwebmp-jstree Show documentation
The JWebSwing implementation for JSTree
package com.jwebmp.plugins.jstree.interfaces;
import com.jwebmp.plugins.jstree.JSTreeList;
import com.jwebmp.plugins.jstree.JSTreeListItem;
import com.jwebmp.plugins.jstree.options.JSTreeNodeOptions;
import javax.validation.constraints.NotNull;
public interface IJSTreeList>
{
/**
* Adds a new item to the collection
*
* @param title
* @param options
*
* @return
*/
JSTreeListItem extends JSTreeListItem> addItem(String title, JSTreeNodeOptions> options);
/**
* Adds a new static root object to the list
*
* @param root
*
* @return
*/
@SuppressWarnings("unchecked")
@NotNull
J addRoot(JSTreeListItem> root);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy