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

com.github.bordertech.wcomponents.examples.theme.WMenuExample Maven / Gradle / Ivy

package com.github.bordertech.wcomponents.examples.theme;

import com.github.bordertech.wcomponents.WContainer;
import com.github.bordertech.wcomponents.WHeading;
import com.github.bordertech.wcomponents.WMenu;
import com.github.bordertech.wcomponents.examples.menu.ColumnMenuExample;
import com.github.bordertech.wcomponents.examples.menu.MenuBarExample;
import com.github.bordertech.wcomponents.examples.menu.TreeMenuExample;

/**
 * This component demonstrates the usage of the {@link WMenu} component.
 *
 * @author Yiannis Paschalidis
 * @since 1.0.0
 */
public class WMenuExample extends WContainer {

	/**
	 * Creates a WMenu example.
	 */
	public WMenuExample() {
		add(new WHeading(WHeading.MAJOR, "Menu bar"));
		add(new MenuBarExample());

		add(new WHeading(WHeading.MAJOR, "Tree menu"));
		add(new TreeMenuExample());

		add(new WHeading(WHeading.MAJOR, "Column  menu"));
		add(new ColumnMenuExample());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy