Uses of Interface
pivot.collections.Sequence

Packages that use Sequence
pivot.charts Contains a collection of components for use in charting applications. 
pivot.charts.content Contains classes representing chart data. 
pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
pivot.collections.immutable Contains a set of read-only collection implementations. 
pivot.io Contains classes related to input/output operations. 
pivot.serialization Contains a set of classes for use in data serialization. 
pivot.util.concurrent Provides a set of classes to simplify the execution of background tasks. 
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
pivot.wtk.media.drawing Contains classes used to construct vector-based drawings. 
pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
pivot.wtk.text Contains classes representing a text object model. 
 

Uses of Sequence in pivot.charts
 

Classes in pivot.charts that implement Sequence
 class ChartView.CategorySequence
          Internal class for managing the chart's category list.
 

Methods in pivot.charts that return Sequence
 Sequence<ChartView.Category> ChartView.CategorySequence.remove(int index, int count)
           
 

Methods in pivot.charts with parameters of type Sequence
 void ChartViewCategoryListener.categoriesRemoved(ChartView chartView, int index, Sequence<ChartView.Category> categories)
          Fired when a category is removed from a chart view.
 

Uses of Sequence in pivot.charts.content
 

Classes in pivot.charts.content that implement Sequence
 class ValueSeries<T>
          Represents series data for value chart views.
 

Uses of Sequence in pivot.collections
 

Subinterfaces of Sequence in pivot.collections
 interface List<T>
          Collection interface representing an ordered sequence of items.
 interface Queue<T>
          Interface representing a first-in, first-out (FIFO) queue when unsorted, and a priority queue when sorted.
 interface Stack<T>
          Interface representing a last-in, first-out (LIFO) stack when unsorted, and a priority stack when sorted.
 

Classes in pivot.collections that implement Sequence
 class ArrayList<T>
          Implementation of the List interface that is backed by an array.
 class ArrayQueue<T>
          Implementation of the Queue interface that is backed by an array.
 class ArrayStack<T>
          Implementation of the Stack interface that is backed by an array.
 class LinkedList<T>
          Implementation of the List interface that is backed by a linked list.
 class LinkedQueue<T>
          Implementation of the Queue interface that is backed by a linked list.
 class LinkedStack<T>
          Implementation of the Stack interface that is backed by a linked list.
 

Methods in pivot.collections that return Sequence
static
<T> Sequence<java.lang.Integer>
Sequence.Tree.pathOf(Sequence<T> sequence, T item)
          Returns the path to an item in a nested sequence.
 Sequence<T> LinkedList.remove(int index, int count)
           
 Sequence<T> List.remove(int index, int count)
           
 Sequence<T> Sequence.remove(int index, int count)
          Removes one or more items from the sequence.
 Sequence<T> ArrayList.remove(int index, int count)
           
static
<T> Sequence<T>
Sequence.Tree.remove(Sequence<T> sequence, Sequence<java.lang.Integer> path, int count)
          Removes an item from a nested sequence.
static
<T> Sequence<java.lang.Integer>
Sequence.Tree.remove(Sequence<T> sequence, T item)
          Removes the first occurrence of an item from a nested sequence.
 

Methods in pivot.collections with parameters of type Sequence
static
<T> int
Sequence.Tree.add(Sequence<T> sequence, T item, Sequence<java.lang.Integer> path)
          Adds an item to a nested sequence.
static
<T> int
Sequence.Tree.add(Sequence<T> sequence, T item, Sequence<java.lang.Integer> path)
          Adds an item to a nested sequence.
static
<T extends java.lang.Comparable<? super T>>
int
Sequence.Search.binarySearch(Sequence<T> sequence, T item)
          Performs a binary search of a sequence for the given comparable item.
static
<T> int
Sequence.Search.binarySearch(Sequence<T> sequence, T item, java.util.Comparator<T> comparator)
          Performs a binary search of a sequence for the given item.
static
<T> T
Sequence.Tree.get(Sequence<T> sequence, Sequence<java.lang.Integer> path)
          Retrieves an item from a nested sequence.
static
<T> T
Sequence.Tree.get(Sequence<T> sequence, Sequence<java.lang.Integer> path)
          Retrieves an item from a nested sequence.
static
<T> void
Sequence.Tree.insert(Sequence<T> sequence, T item, Sequence<java.lang.Integer> path, int index)
          Inserts an item into a nested sequence.
static
<T> void
Sequence.Tree.insert(Sequence<T> sequence, T item, Sequence<java.lang.Integer> path, int index)
          Inserts an item into a nested sequence.
static boolean Sequence.Tree.isDescendant(Sequence<java.lang.Integer> ancestorPath, Sequence<java.lang.Integer> descendantPath)
          Determines whether the path represented by the second argument is a descendant of the path represented by the first argument.
static boolean Sequence.Tree.isDescendant(Sequence<java.lang.Integer> ancestorPath, Sequence<java.lang.Integer> descendantPath)
          Determines whether the path represented by the second argument is a descendant of the path represented by the first argument.
 void List.ListListenerList.itemsRemoved(List<T> list, int index, Sequence<T> items)
           
 void ListListener.itemsRemoved(List<T> list, int index, Sequence<T> items)
          Called when items have been removed from a list.
static
<T extends java.lang.Comparable<? super T>>
int
Sequence.Search.linearSearch(Sequence<T> sequence, T item)
          Performs a linear search of a sequence for the given comparable item.
static
<T> int
Sequence.Search.linearSearch(Sequence<T> sequence, T item, java.util.Comparator<T> comparator)
          Performs a linear search of a sequence for the given item.
static
<T> Sequence<java.lang.Integer>
Sequence.Tree.pathOf(Sequence<T> sequence, T item)
          Returns the path to an item in a nested sequence.
static
<T extends java.lang.Comparable<? super T>>
void
Sequence.Sort.quickSort(Sequence<T> sequence)
          Performs a quicksort on the sequence for the given comparable type.
static
<T> void
Sequence.Sort.quickSort(Sequence<T> sequence, java.util.Comparator<T> comparator)
          Performs a quicksort on the sequence.
static
<T> Sequence<T>
Sequence.Tree.remove(Sequence<T> sequence, Sequence<java.lang.Integer> path, int count)
          Removes an item from a nested sequence.
static
<T> Sequence<T>
Sequence.Tree.remove(Sequence<T> sequence, Sequence<java.lang.Integer> path, int count)
          Removes an item from a nested sequence.
static
<T> Sequence<java.lang.Integer>
Sequence.Tree.remove(Sequence<T> sequence, T item)
          Removes the first occurrence of an item from a nested sequence.
static
<T> T
Sequence.Tree.update(Sequence<T> sequence, Sequence<java.lang.Integer> path, T item)
          Updates an item in a nested sequence.
static
<T> T
Sequence.Tree.update(Sequence<T> sequence, Sequence<java.lang.Integer> path, T item)
          Updates an item in a nested sequence.
 

Constructors in pivot.collections with parameters of type Sequence
ArrayList(Sequence<T> sequence)
           
ArrayList(Sequence<T> sequence, int index, int count)
           
 

Uses of Sequence in pivot.collections.adapter
 

Classes in pivot.collections.adapter that implement Sequence
 class ListAdapter<T>
          Implementation of the List interface that is backed by an instance of java.util.List.
 

Methods in pivot.collections.adapter that return Sequence
 Sequence<T> ListAdapter.remove(int index, int count)
           
 

Uses of Sequence in pivot.collections.concurrent
 

Classes in pivot.collections.concurrent that implement Sequence
 class SynchronizedList<T>
          Synchronized implementation of the List interface.
 class SynchronizedQueue<T>
          Synchronized implementation of the Queue interface.
 class SynchronizedStack<T>
          Synchronized implementation of the Stack interface.
 

Methods in pivot.collections.concurrent that return Sequence
 Sequence<T> SynchronizedList.remove(int index, int count)
           
 

Uses of Sequence in pivot.collections.immutable
 

Classes in pivot.collections.immutable that implement Sequence
 class ImmutableList<T>
          Unmodifiable implementation of the List interface.
 

Methods in pivot.collections.immutable that return Sequence
 Sequence<T> ImmutableList.remove(int index, int count)
           
 

Uses of Sequence in pivot.io
 

Classes in pivot.io that implement Sequence
 class FileList
          Collection representing a list of files.
 class Folder
          Class representing a folder in the file system.
 

Methods in pivot.io that return Sequence
 Sequence<java.io.File> Folder.remove(int index, int count)
           
 

Uses of Sequence in pivot.serialization
 

Classes in pivot.serialization that implement Sequence
 class CSVSerializer.KeySequence
          Class representing the serializers key sequence.
 

Methods in pivot.serialization that return Sequence
 Sequence<java.lang.String> CSVSerializer.KeySequence.remove(int index, int count)
           
 

Uses of Sequence in pivot.util.concurrent
 

Classes in pivot.util.concurrent that implement Sequence
 class TaskSequence<V>
          Class that runs a sequence of tasks in series and notifies listeners when all tasks are complete.
 

Methods in pivot.util.concurrent that return Sequence
 Sequence<Task<V>> TaskSequence.remove(int index, int count)
           
 

Uses of Sequence in pivot.wtk
 

Classes in pivot.wtk that implement Sequence
 class Accordion
          Component that provides access to a set of components via selectable headers.
 class Accordion.PanelSequence
          Panel sequence implementation.
 class Alert
          Class representing an "alert", a dialog commonly used to perform simple user interaction.
 class Border
          Container that displays a border.
 class Calendar
          Component that allows the user to select a date.
 class CardPane
          Container that behaves like a deck of cards, only one of which may be visible at a time.
 class Component.DecoratorSequence
          Decorator sequence implementation.
 class Container
          Abstract base class for containers.
 class Dialog
          Window class whose primary purpose is to facilitate interaction between an application and a user.
 class Display
          Container that serves as the root of a component hierarchy.
 class Expander
          Navigation container that allows a user to expand and collapse a content component.
 class FlowPane
          Container that arranges components in a line, either vertically or horizontally.
 class Form
          A container that arranges field components in a form layout.
static class Form.Section
          Class representing a menu section.
 class Form.SectionSequence
          Section sequence implementation.
 class Frame
          Container class representing a decorated frame window.
 class Menu
          Component that presents a cascading menu.
static class Menu.Section
          Class representing a menu section.
 class Menu.SectionSequence
          Section sequence implementation.
 class MenuBar
          Component representing a horizontal menu bar.
 class MenuBar.ItemSequence
          Item sequence implementation.
 class MenuPopup
          Popup class that displays a cascading menu.
 class Palette
          Window representing a "tool palette".
 class Panorama
          Container that provides a scrollable view of a component.
 class Prompt
          Class representing an "prompt", a sheet commonly used to perform simple user interaction.
 class Rollup
          Container that can be expanded or collapsed to respectively show or hide its children.
 class ScrollBar
          Component that allows a user to select one of a range of values.
 class ScrollPane
          Container that provides a scrollable view of a component, with optional fixed row and column headers.
 class Sheet
          Window class representing a "sheet".
 class Slider
          Allows a user to select one of a range of values.
 class SpanSequence
          Class representing a sequence of sorted, consolidated spans.
 class Spinner
          Component that presents a means of cycling through a list of items.
 class SplitPane
          A SplitPane is a container component that splits its size up into two regions, each of which is capable of holding one component.
 class StackPane
          Container that behaves like a stack of transparencies, all of which are visible at the same time.
 class TablePane
          Container that arranges components in a two-dimensional grid, optionally spanning multiple rows and columns.
 class TablePane.ColumnSequence
          Class that manages a table pane's column list.
static class TablePane.Row
          Represents a table pane row.
 class TablePane.RowSequence
          Class that manages a table pane's row list.
 class TableView.ColumnSequence
          Column sequence implementation.
 class TabPane
          Container that provides access to a set of components via selectable tabs, only one of which is visible at a time.
 class TabPane.TabSequence
          Tab sequence implementation.
 class Tooltip
          Window representing a "tooltip".
 class Viewport
          Abstract base class for viewport components.
 class Window
          Top-level container representing the entry point into a user interface.
 

Methods in pivot.wtk that return Sequence
 Sequence<java.lang.Integer> ListView.getCheckedIndexes()
          Returns the indexes of currently checked items.
 Sequence<Sequence<java.lang.Integer>> TreeView.getCheckedPaths()
          Gets the sequence of node paths that are checked.
 Sequence<java.lang.Integer> ListView.getDisabledIndexes()
          Returns the indexes of currently disabled items.
 Sequence<java.lang.Integer> TableView.getDisabledIndexes()
           
 Sequence<Sequence<java.lang.Integer>> TreeView.getDisabledPaths()
           
 Sequence<java.lang.Integer> TreeView.getFirstSelectedPath()
          Returns the first selected path, as it would appear in a fully expanded tree.
 Sequence<java.lang.Integer> TreeView.getLastSelectedPath()
          Returns the last selected path, as it would appear in a fully expanded tree.
 Sequence<java.lang.Integer> TreeView.getNodeAt(int y)
          Gets the path to the node found at the specified y-coordinate (relative to the tree view).
 Sequence<java.lang.Integer> TreeView.Skin.getNodeAt(int y)
          Gets the path to the node found at the specified y-coordinate (relative to the tree view).
 Sequence<java.lang.Object> ListView.getSelectedItems()
           
 Sequence<java.lang.Integer> TreeView.getSelectedPath()
           
 Sequence<Sequence<java.lang.Integer>> TreeView.getSelectedPaths()
           
 Sequence<Span> ListView.getSelectedRanges()
          Returns the list's current selection.
 Sequence<Span> TableView.getSelectedRanges()
          Returns the table's current selection.
 Sequence<java.lang.Object> TableView.getSelectedRows()
           
 Sequence<Component> Accordion.remove(int index, int count)
           
 Sequence<Component> Accordion.PanelSequence.remove(int index, int count)
           
 Sequence<Component> TablePane.remove(int index, int count)
          Overrides the base method to check whether or not a cell component is being removed, and fires the appropriate event in that case.
 Sequence<Component> TablePane.Row.remove(int index, int count)
           
 Sequence<TablePane.Row> TablePane.RowSequence.remove(int index, int count)
           
 Sequence<TablePane.Column> TablePane.ColumnSequence.remove(int index, int count)
           
 Sequence<Component> ScrollPane.remove(int index, int count)
           
 Sequence<Decorator> Component.DecoratorSequence.remove(int index, int count)
           
 Sequence<Component> Menu.remove(int index, int count)
           
 Sequence<Menu.Item> Menu.Section.remove(int index, int count)
           
 Sequence<Menu.Section> Menu.SectionSequence.remove(int index, int count)
           
 Sequence<Component> Border.remove(int index, int count)
           
 Sequence<Component> SplitPane.remove(int index, int count)
           
 Sequence<Component> Viewport.remove(int index, int count)
           
 Sequence<Component> TabPane.remove(int index, int count)
           
 Sequence<Component> TabPane.TabSequence.remove(int index, int count)
           
 Sequence<TableView.Column> TableView.ColumnSequence.remove(int index, int count)
           
 Sequence<Span> SpanSequence.remove(int index, int count)
          Removes one or more spans from the sequence.
 Sequence<Component> Form.remove(int index, int count)
           
 Sequence<Component> Form.Section.remove(int index, int count)
           
 Sequence<Form.Section> Form.SectionSequence.remove(int index, int count)
           
 Sequence<Component> MenuBar.remove(int index, int count)
           
 Sequence<MenuBar.Item> MenuBar.ItemSequence.remove(int index, int count)
           
 Sequence<Component> Window.remove(int index, int count)
           
 Sequence<Component> Container.remove(int index, int count)
           
 Sequence<Component> CardPane.remove(int index, int count)
           
 Sequence<Component> Expander.remove(int index, int count)
           
 Sequence<Decorator> Component.DecoratorSequence.removeAll()
           
 Sequence<Component> Container.removeAll()
           
 

Methods in pivot.wtk that return types with arguments of type Sequence
 Sequence<Sequence<java.lang.Integer>> TreeView.getCheckedPaths()
          Gets the sequence of node paths that are checked.
 Sequence<Sequence<java.lang.Integer>> TreeView.getDisabledPaths()
           
 Sequence<Sequence<java.lang.Integer>> TreeView.getSelectedPaths()
           
 

Methods in pivot.wtk with parameters of type Sequence
 void TreeView.addSelectedPath(Sequence<java.lang.Integer> path)
           
 void TreeViewBranchListener.branchCollapsed(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when a tree node is collapsed.
 void TreeViewBranchListener.branchExpanded(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when a tree node is expanded.
 void TablePaneListener.cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
          Called when cell's have been removed from a table pane.
 void TreeView.collapseBranch(Sequence<java.lang.Integer> path)
          Collapses the branch at the specified path.
 void TablePaneListener.columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
          Called when column's have been removed from a table pane.
 void TableViewColumnListener.columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
          Called when columns are removed from a table view's column sequence.
 int TreeView.PathComparator.compare(Sequence<java.lang.Integer> path1, Sequence<java.lang.Integer> path2)
           
 int TreeView.PathComparator.compare(Sequence<java.lang.Integer> path1, Sequence<java.lang.Integer> path2)
           
 void ContainerListener.componentsRemoved(Container container, int index, Sequence<Component> removed)
          Called when components have been removed from a container's component sequence.
 void ComponentDecoratorListener.decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
          Called when decorators have been removed from a component's decorator sequence.
 void TreeView.NodeEditor.edit(TreeView treeView, Sequence<java.lang.Integer> path)
          Notifies the editor that editing should begin.
 void TreeView.expandBranch(Sequence<java.lang.Integer> path)
          Expands the branch at the specified path.
 void FormListener.fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
          Called when forms fields items have been removed.
 Bounds TreeView.getNodeBounds(Sequence<java.lang.Integer> path)
          Gets the bounds of the node at the specified path relative to the tree view.
 Bounds TreeView.Skin.getNodeBounds(Sequence<java.lang.Integer> path)
          Gets the bounds of the node at the specified path relative to the tree view.
 TreeView.NodeCheckState TreeView.getNodeCheckState(Sequence<java.lang.Integer> path)
          Returns the checkmark state of the node at the specified path.
 boolean TreeView.isBranchExpanded(Sequence<java.lang.Integer> path)
          Tells whether or not the specified branch is expanded.
 boolean TreeView.isNodeChecked(Sequence<java.lang.Integer> path)
          Tells whether or not the node at the specified path is checked.
 boolean TreeView.isNodeDisabled(Sequence<java.lang.Integer> path)
          Returns the disabled state of a given node.
 boolean TreeView.isNodeSelected(Sequence<java.lang.Integer> path)
           
 void MenuListener.itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)
          Called when menu items have been removed.
 void MenuBarListener.itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
          Called when menu bar items have been removed.
 void TreeViewNodeStateListener.nodeCheckStateChanged(TreeView treeView, Sequence<java.lang.Integer> path, TreeView.NodeCheckState previousCheckState)
          Called when a node's checked state has changed.
 void TreeViewNodeStateListener.nodeDisabledChanged(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when a node's disabled state has changed.
 void TreeViewNodeListener.nodeInserted(TreeView treeView, Sequence<java.lang.Integer> path, int index)
          Called when a node has been inserted into the tree view.
 void TreeViewNodeListener.nodesRemoved(TreeView treeView, Sequence<java.lang.Integer> path, int index, int count)
          Called when nodes have been removed from the tree view.
 void TreeViewNodeListener.nodesSorted(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when the nodes in a branch have been sorted.
 void TreeViewNodeListener.nodeUpdated(TreeView treeView, Sequence<java.lang.Integer> path, int index)
          Called when a node in the tree view has been updated.
 void AccordionListener.panelsRemoved(Accordion accordion, int index, Sequence<Component> panels)
          Called when a panel has been removed from an accordion's panel sequence.
 void TreeView.removeSelectedPath(Sequence<java.lang.Integer> path)
           
 void TablePaneListener.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
          Called when rows have been removed from a table pane.
 void FormListener.sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
          Called when form sections have been removed.
 void MenuListener.sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
          Called when menu sections have been removed.
 void TreeViewSelectionListener.selectedPathAdded(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when a selected path has been added to a tree view.
 void TreeViewSelectionListener.selectedPathRemoved(TreeView treeView, Sequence<java.lang.Integer> path)
          Called when a selected path has been removed from a tree view.
 void TreeViewSelectionListener.selectedPathsChanged(TreeView treeView, Sequence<Sequence<java.lang.Integer>> previousSelectedPaths)
          Called when a tree view's selection state has been reset.
 void ListViewSelectionListener.selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
          Called when a list view's selection state has been reset.
 void TableViewSelectionListener.selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
          Called when a table view's selection state has been reset.
 void TreeView.setBranchExpanded(Sequence<java.lang.Integer> path, boolean expanded)
          Sets the expansion state of the specified branch.
 void TreeView.setNodeChecked(Sequence<java.lang.Integer> path, boolean checked)
          Sets the check state of the node at the specified path.
 void TreeView.setNodeDisabled(Sequence<java.lang.Integer> path, boolean disabled)
          Sets the disabled state of a node.
 void ListView.setSelectedItems(Sequence<java.lang.Object> items)
           
 void TreeView.setSelectedPath(Sequence<java.lang.Integer> path)
           
 void TreeView.setSelectedPaths(Sequence<Sequence<java.lang.Integer>> selectedPaths)
           
 void ListView.setSelectedRanges(Sequence<Span> selectedRanges)
          Sets the selection to the given span sequence.
 void TableView.setSelectedRanges(Sequence<Span> selectedRanges)
          Sets the selection to the given span sequence.
 void TabPaneListener.tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
          Called when a tab has been removed from a tab pane's tab sequence.
 

Method parameters in pivot.wtk with type arguments of type Sequence
 void TreeViewSelectionListener.selectedPathsChanged(TreeView treeView, Sequence<Sequence<java.lang.Integer>> previousSelectedPaths)
          Called when a tree view's selection state has been reset.
 void TreeView.setSelectedPaths(Sequence<Sequence<java.lang.Integer>> selectedPaths)
           
 

Constructors in pivot.wtk with parameters of type Sequence
Alert(MessageType type, java.lang.String message, Sequence<?> options)
           
Alert(MessageType type, java.lang.String message, Sequence<?> options, Component body)
           
Prompt(MessageType type, java.lang.String message, Sequence<?> options)
           
Prompt(MessageType type, java.lang.String message, Sequence<?> options, Component body)
           
TablePane(Sequence<TablePane.Column> columns)
          Creates a new TablePane with the specified columns.
 

Uses of Sequence in pivot.wtk.content
 

Classes in pivot.wtk.content that implement Sequence
 class ButtonDataRenderer
          Default button data renderer.
 class CalendarButtonDataRenderer
          Default calendar button data renderer.
 class CalendarDateSpinnerData
          Spinner data model that presents a bounded list of calendar dates.
 class LinkButtonDataRenderer
          Default link button data renderer.
 class ListButtonDataRenderer
          Default list button data renderer.
 class ListViewColorRenderer
          List view renderer for displaying color swatches.
 class ListViewItemRenderer
          Default list view item renderer.
 class MenuBarItemDataRenderer
          Default menu bar item data renderer.
 class MenuButtonDataRenderer
          Default menu button data renderer.
 class MenuItemDataRenderer
          Default menu item data renderer.
 class NumericSpinnerData
          Spinner data model that presents a bounded list of integers.
 class TableViewBooleanCellRenderer
          Default renderer for table view cells that contain boolean data.
 class TableViewHeaderDataRenderer
          Default table view header data renderer.
 class TreeBranch
          Default tree branch implementation.
 class TreeViewFileRenderer
          Tree view renderer for displaying file system contents.
 class TreeViewNodeRenderer
          Default tree node renderer, which knows how to render instances of TreeNode and Image.
 

Methods in pivot.wtk.content that return Sequence
 Sequence<TableViewMultiCellRenderer.RendererMapping> TableViewMultiCellRenderer.getRendererMappings()
           
 Sequence<java.lang.Integer> NumericSpinnerData.remove(int index, int count)
           
 Sequence<TreeNode> TreeBranch.remove(int index, int count)
           
 Sequence<CalendarDate> CalendarDateSpinnerData.remove(int index, int count)
          Throws UnsupportedOperationException.
 

Methods in pivot.wtk.content with parameters of type Sequence
 void TreeViewNodeEditor.edit(TreeView treeView, Sequence<java.lang.Integer> path)
           
 

Uses of Sequence in pivot.wtk.media.drawing
 

Classes in pivot.wtk.media.drawing that implement Sequence
 class Group
          Shape representing a collection of other shapes.
 

Methods in pivot.wtk.media.drawing that return Sequence
 Sequence<Shape> Group.remove(int index, int count)
           
 

Uses of Sequence in pivot.wtk.skin
 

Classes in pivot.wtk.skin that implement Sequence
 class TextAreaSkin.DocumentView
          Document view.
 class TextAreaSkin.ElementView
          Abstract base class for element views.
 class TextAreaSkin.ParagraphView
           
 

Methods in pivot.wtk.skin that return Sequence
 Sequence<TextAreaSkin.NodeView> TextAreaSkin.ElementView.remove(int index, int count)
           
 

Methods in pivot.wtk.skin with parameters of type Sequence
 void TablePaneSkin.cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
           
 void TablePaneSkin.columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
           
 void CardPaneSkin.componentsRemoved(Container container, int index, Sequence<Component> removed)
           
 void ContainerSkin.componentsRemoved(Container container, int index, Sequence<Component> removed)
           
 void TextAreaSkin.ElementView.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 void TextAreaSkin.DocumentView.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 void TablePaneSkin.rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
           
 

Uses of Sequence in pivot.wtk.skin.terra
 

Fields in pivot.wtk.skin.terra declared as Sequence
 Sequence<TerraTreeViewSkin.NodeInfo> TerraTreeViewSkin.BranchInfo.children
           
 

Methods in pivot.wtk.skin.terra that return Sequence
 Sequence<java.lang.Integer> TerraTableViewSkin.getColumnWidths()
          Returns the column widths for this table.
static Sequence<java.lang.Integer> TerraTableViewSkin.getColumnWidths(TableView.ColumnSequence columns, int width)
          Returns the column widths, determined by applying relative size values to the available width.
 Sequence<java.lang.Integer> TerraTreeViewSkin.getNodeAt(int y)
           
 Sequence<java.lang.Integer> TerraTreeViewSkin.NodeInfo.getPath()
           
 

Methods in pivot.wtk.skin.terra with parameters of type Sequence
 void TerraTreeViewSkin.branchCollapsed(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTreeViewSkin.branchExpanded(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTableViewHeaderSkin.columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
           
 void TerraTableViewSkin.columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
           
 void TerraRollupSkin.componentsRemoved(Container container, int index, Sequence<Component> components)
           
 void TerraFormSkin.fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
           
 Bounds TerraTreeViewSkin.getNodeBounds(Sequence<java.lang.Integer> path)
           
protected  TerraTreeViewSkin.NodeInfo TerraTreeViewSkin.getNodeInfoAt(Sequence<java.lang.Integer> path)
          Gets the metadata associated with the node at the specified path.
 void TerraMenuSkin.itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)
           
 void TerraMenuBarSkin.itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
           
 void TerraTreeViewSkin.nodeCheckStateChanged(TreeView treeView, Sequence<java.lang.Integer> path, TreeView.NodeCheckState previousCheckState)
           
 void TerraTreeViewSkin.nodeDisabledChanged(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTreeViewSkin.nodeInserted(TreeView treeView, Sequence<java.lang.Integer> path, int index)
           
 void TerraTreeViewSkin.nodesRemoved(TreeView treeView, Sequence<java.lang.Integer> path, int index, int count)
           
 void TerraTreeViewSkin.nodesSorted(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTreeViewSkin.nodeUpdated(TreeView treeView, Sequence<java.lang.Integer> path, int index)
           
 void TerraAccordionSkin.panelsRemoved(Accordion accordion, int index, Sequence<Component> panels)
           
 void TerraFormSkin.sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
           
 void TerraMenuSkin.sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
           
 void TerraTreeViewSkin.selectedPathAdded(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTreeViewSkin.selectedPathRemoved(TreeView treeView, Sequence<java.lang.Integer> path)
           
 void TerraTreeViewSkin.selectedPathsChanged(TreeView treeView, Sequence<Sequence<java.lang.Integer>> previousSelectedPaths)
           
 void TerraListViewSkin.selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
           
 void TerraTableViewSkin.selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
           
 void TerraTabPaneSkin.tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
           
 

Method parameters in pivot.wtk.skin.terra with type arguments of type Sequence
 void TerraTreeViewSkin.selectedPathsChanged(TreeView treeView, Sequence<Sequence<java.lang.Integer>> previousSelectedPaths)
           
 

Uses of Sequence in pivot.wtk.text
 

Classes in pivot.wtk.text that implement Sequence
 class Block
          Abstract base class for block elements.
 class BulletedList
          Element representing a bulleted list.
 class Document
          Node representing the root of an element hierarchy.
 class Element
          Abstract base class for elements.
 class List
          Abstract base class for list elements.
 class List.Item
          Element representing a list item.
 class NumberedList
          Element representing a numbered list.
 class Paragraph
          Element representing a paragraph.
 class Span
          Element representing an inline range of styled characters.
 

Methods in pivot.wtk.text that return Sequence
 Sequence<java.lang.Integer> Element.getPathAt(int offset)
          Determines the path of the descendant node at a given offset.
 Sequence<java.lang.Integer> Paragraph.getPathAt(int offset)
           
 Sequence<Node> Element.remove(int index, int count)
           
 

Methods in pivot.wtk.text with parameters of type Sequence
 void ElementListener.nodesRemoved(Element element, int index, Sequence<Node> nodes)
          Called when nodes have been removed from an element.