Uses of Class
com.flowingcode.vaadin.addons.orgchart.OrgChartItem
Packages that use OrgChartItem
Package
Description
-
Uses of OrgChartItem in com.flowingcode.vaadin.addons.orgchart
Methods in com.flowingcode.vaadin.addons.orgchart that return OrgChartItemModifier and TypeMethodDescriptionOrgChart.NodeClickEvent.getClickedItem()OrgChart.DragAndDropEvent.getDraggedItem()OrgChart.getOrgChartItem()Returns latest value of the orgchart element.Methods in com.flowingcode.vaadin.addons.orgchart that return types with arguments of type OrgChartItemMethods in com.flowingcode.vaadin.addons.orgchart with parameters of type OrgChartItemModifier and TypeMethodDescriptionvoidOrgChartItem.addChildren(OrgChartItem item) voidOrgChart.addParent(OrgChartItem newParentItem) Adds a new parent node to the organization chart.protected voidOrgChart.fireChildrenAddedEvent(OrgChartItem item, List<OrgChartItem> newChildren, boolean fromClient) Fires a children added event.protected voidOrgChart.fireDragAndDropEvent(OrgChartItem draggedItem, boolean fromClient) Fires aOrgChart.DragAndDropEvent.protected voidOrgChart.fireNodeClickEvent(OrgChartItem clickedItem, boolean fromClient) Fires aOrgChart.NodeClickEvent.protected voidOrgChart.fireNodeUpdatedEvent(OrgChartItem item, boolean fromClient) Fires a node updated event.protected voidOrgChart.fireParentAddedEvent(OrgChartItem newParent, boolean fromClient) Fires a parent added event.protected voidOrgChart.fireSiblingsAddedEvent(OrgChartItem item, List<OrgChartItem> newSiblings, boolean fromClient) Fires a siblings added event.voidOrgChart.setValue(OrgChartItem orgChartItem) voidOrgChart.updateNode(Integer nodeId, OrgChartItem newDataItem) Updates a node in the chart with new data.Method parameters in com.flowingcode.vaadin.addons.orgchart with type arguments of type OrgChartItemModifier and TypeMethodDescriptionvoidOrgChart.addChildren(Integer nodeId, List<OrgChartItem> children) Adds one or more child nodes to a specified parent node in the chart.voidOrgChart.addSiblings(Integer nodeId, List<OrgChartItem> siblings) Adds one or more sibling nodes to a target node in the chart.protected voidOrgChart.fireChildrenAddedEvent(OrgChartItem item, List<OrgChartItem> newChildren, boolean fromClient) Fires a children added event.protected voidOrgChart.fireSiblingsAddedEvent(OrgChartItem item, List<OrgChartItem> newSiblings, boolean fromClient) Fires a siblings added event.voidOrgChartItem.setChildren(List<OrgChartItem> children) Constructors in com.flowingcode.vaadin.addons.orgchart with parameters of type OrgChartItemModifierConstructorDescriptionDragAndDropEvent(OrgChart source, OrgChartItem draggedItem, boolean fromClient) NodeClickEvent(OrgChart source, OrgChartItem clickedItem, boolean fromClient) OrgChart(OrgChartItem orgChartItem) OrgChartItem(OrgChartItem original) -
Uses of OrgChartItem in com.flowingcode.vaadin.addons.orgchart.event
Methods in com.flowingcode.vaadin.addons.orgchart.event that return OrgChartItemModifier and TypeMethodDescriptionChildrenAddedEvent.getItem()Gets the node that received new children.SiblingsAddedEvent.getItem()Gets the node that received new siblings.ParentAddedEvent.getNewParent()Gets the item that was added as the new parent/root.NodeUpdatedEvent.getUpdatedItem()Gets the updated node.Methods in com.flowingcode.vaadin.addons.orgchart.event that return types with arguments of type OrgChartItemModifier and TypeMethodDescriptionChildrenAddedEvent.getNewChildren()Gets the list of the newly added children.SiblingsAddedEvent.getNewSiblings()Gets the list of the newly added siblings.Constructors in com.flowingcode.vaadin.addons.orgchart.event with parameters of type OrgChartItemModifierConstructorDescriptionChildrenAddedEvent(OrgChart source, OrgChartItem item, List<OrgChartItem> newChildren, boolean fromClient) Creates a new children added event.NodeUpdatedEvent(OrgChart source, OrgChartItem updatedItem, boolean fromClient) Creates a node updated event.ParentAddedEvent(OrgChart source, OrgChartItem newParent, boolean fromClient) Creates a new event.SiblingsAddedEvent(OrgChart source, OrgChartItem item, List<OrgChartItem> newSiblings, boolean fromClient) Creates a new siblings added event.Constructor parameters in com.flowingcode.vaadin.addons.orgchart.event with type arguments of type OrgChartItemModifierConstructorDescriptionChildrenAddedEvent(OrgChart source, OrgChartItem item, List<OrgChartItem> newChildren, boolean fromClient) Creates a new children added event.SiblingsAddedEvent(OrgChart source, OrgChartItem item, List<OrgChartItem> newSiblings, boolean fromClient) Creates a new siblings added event.