All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.jstree.interfaces.IJSTreeList Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
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 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