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

com.jwebmp.plugins.jstree.interfaces.IJSTreeListItem 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.core.base.html.Link;
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 IJSTreeListItem>
{
	/**
	 * Returns the link for the node
	 *
	 * @return
	 */
	@NotNull
	Link getLink();

	/**
	 * Adds a new expansion on the child list
	 *
	 * @return
	 */
	JSTreeList asParent();

	@SuppressWarnings("unchecked")
	@NotNull
	J asLink(boolean asLink);

	JSTreeNodeOptions> getOptions();

	J setOptions(JSTreeNodeOptions options);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy