Uses of Class
com.explodingpixels.macwidgets.SourceListItem

Packages that use SourceListItem
com.explodingpixels.macwidgets   
 

Uses of SourceListItem in com.explodingpixels.macwidgets
 

Methods in com.explodingpixels.macwidgets that return SourceListItem
 SourceListItem SourceList.getSelectedItem()
          Gets the selected SourceListItem.
 

Methods in com.explodingpixels.macwidgets that return types with arguments of type SourceListItem
 java.util.List<SourceListItem> SourceListItem.getChildItems()
          Gets a list of this SourceListItem's child SourceListItems.
 java.util.List<SourceListItem> SourceListCategory.getItems()
          Gets a list of this SourceListCategory's SourceListItems.
 

Methods in com.explodingpixels.macwidgets with parameters of type SourceListItem
 void SourceListModel.addItemToCategory(SourceListItem item, SourceListCategory category)
          Adds the given item to the given SourceListCategory.
 void SourceListModel.addItemToCategory(SourceListItem item, SourceListCategory category, int index)
          Adds the given item to the given SourceListCategory at the given index within that category.
 void SourceListModel.addItemToItem(SourceListItem childItem, SourceListItem parentItem)
          Adds the given "child" item to the given "parent" item.
 void SourceListModel.addItemToItem(SourceListItem childItem, SourceListItem parentItem, int index)
          Adds the given "child" item to the given "parent" item at the given index.
 boolean SourceListItem.containsItem(SourceListItem item)
          Returns true if the given SourceListItem is contained by this item, to include being a sub-element of another child SourceListItem.
 boolean SourceListCategory.containsItem(SourceListItem item)
          Returns true if the given SourceListItem is contained by this category, to include being a sub-element of another SourceListItem contained by this category.
 javax.swing.JPopupMenu SourceListContextMenuProvider.createContextMenu(SourceListItem item)
          Called when the user requests that a context-menu be shown on a SourceListItem.
 java.lang.String SourceListToolTipProvider.getTooltip(SourceListItem item)
          Gets the tool tip to use for the given SourceListItem.
 void SourceListModelListener.itemAddedToCategory(SourceListItem itemAdded, SourceListCategory category, int index)
          Called when an item is added to a category.
 void SourceListModelListener.itemAddedToItem(SourceListItem itemAdded, SourceListItem parentItem, int index)
          Called when an item is added to another item.
 void SourceListModelListener.itemChanged(SourceListItem item)
          Called when an item's content changes (e.g. text, icon etc.).
 void SourceListModelListener.itemRemovedFromCategory(SourceListItem itemRemoved, SourceListCategory category)
          Called when an item is removed from a category.
 void SourceListModelListener.itemRemovedFromItem(SourceListItem itemRemoved, SourceListItem parentItem)
          Called when an item is removed from another item.
 void SourceListModel.removeItemFromCategory(SourceListItem item, SourceListCategory category)
          Removes the given item from the given category.
 void SourceListModel.removeItemFromItem(SourceListItem parentItem, int index)
          Removes the given child item at from the given parent item.
 void SourceListModel.removeItemFromItem(SourceListItem childItem, SourceListItem parentItem)
          Removes the given child item at from the given parent item.
 void SourceList.scrollItemToVisible(SourceListItem item)
          Scrolls the given SourceListItem to be visible.
 void SourceList.setExpanded(SourceListItem item, boolean expanded)
          Sets the expanded state of the given SourceListItem.
 void SourceList.setSelectedItem(SourceListItem item)
          Selects the given SourceListItem in the list.
 boolean SourceListExpansionListener.shouldCollapseSourceListItem(SourceListItem item)
          Called before collapsing a SourceListItem in a SourceList.
 boolean SourceListExpansionListener.shouldExpandSourceListItem(SourceListItem item)
          Called before expanding a SourceListItem in a SourceList.
 void SourceListClickListener.sourceListItemClicked(SourceListItem item, SourceListClickListener.Button button, int clickCount)
          Called when a SourceListItem is clicked.
 void SourceListExpansionListener.sourceListItemCollapsed(SourceListItem item)
          Called when a SourceListItem is collapsed in a SourceList.
 void SourceListExpansionListener.sourceListItemExpanded(SourceListItem item)
          Called when a SourceListItem is expanded in a SourceList.
 void SourceListSelectionListener.sourceListItemSelected(SourceListItem item)
          Called when a SourceListItem is selected in a SourceList.
 void SourceListModel.validateItemIsInModel(SourceListItem item)
          Checks if the given SourceListItem is in this model.
 



Copyright © 2012. All Rights Reserved.