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

de.mhus.lib.vaadin.aqua.NavigationNode Maven / Gradle / Ivy

There is a newer version: 3.2.8
Show newest version
package de.mhus.lib.vaadin.aqua;

import com.vaadin.ui.ComponentContainer;

public interface NavigationNode {

	NavigationNode getParent();
	
	NavigationNode[] getChildren();
	
	String getTitle();
	
	boolean isLeaf();
	
	boolean equals(Object other);

	void doShowPreview(Desktop desktop, ComponentContainer previewContentPane);

	void doOpenNode(Desktop desktop);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy