Uses of Interface
org.apache.pivot.collections.Sequence
-
Packages that use Sequence Package Description org.apache.pivot.charts Contains a collection of components for use in charting applications.org.apache.pivot.charts.content Contains classes representing chart data.org.apache.pivot.charts.skin Contains abstract base classes for chart view skins.org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components.org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed byjava.util
collections.org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations.org.apache.pivot.collections.immutable Contains a set of read-only collection implementations.org.apache.pivot.io Contains classes related to input/output operations.org.apache.pivot.json Contains classes that facilitate interaction with JSON and JSON-like data structures.org.apache.pivot.serialization Contains a set of classes for use in data serialization.org.apache.pivot.sql Contains classes for working with SQL data.org.apache.pivot.text Contains classes for working with text.org.apache.pivot.util Contains a collection of common utility classes.org.apache.pivot.util.concurrent Provides a set of classes to simplify the execution of background tasks.org.apache.pivot.web.server Contains classes to facilitate access to and development of web query services.org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins.org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme.org.apache.pivot.wtk.text Contains classes representing a text object model.org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of Sequence in org.apache.pivot.charts
Classes in org.apache.pivot.charts that implement Sequence Modifier and Type Class Description class
ChartView.CategorySequence
Internal class for managing the chart's category list.Methods in org.apache.pivot.charts that return Sequence Modifier and Type Method Description Sequence<ChartView.Category>
ChartView.CategorySequence. remove(int index, int count)
Methods in org.apache.pivot.charts with parameters of type Sequence Modifier and Type Method Description void
ChartViewCategoryListener. categoriesRemoved(ChartView chartView, int index, Sequence<ChartView.Category> categories)
Fired when a category is removed from a chart view.void
ChartViewCategoryListener.Listeners. categoriesRemoved(ChartView chartView, int index, Sequence<ChartView.Category> categories)
-
Uses of Sequence in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement Sequence Modifier and Type Class Description class
HistogramSeries<T>
class
ValueSeries<T>
Represents series data for value chart views. -
Uses of Sequence in org.apache.pivot.charts.skin
Methods in org.apache.pivot.charts.skin with parameters of type Sequence Modifier and Type Method Description void
ChartViewSkin. categoriesRemoved(ChartView chartView, int index, Sequence<ChartView.Category> categories)
-
Uses of Sequence in org.apache.pivot.collections
Subinterfaces of Sequence in org.apache.pivot.collections Modifier and Type Interface Description interface
List<T>
Collection interface representing an ordered sequence of items.Classes in org.apache.pivot.collections that implement Sequence Modifier and Type Class Description class
ArrayAdapter<T>
A read-only implementation of theSequence
interface that wraps an array.class
ArrayList<T>
Implementation of theList
interface that is backed by an array.class
EnumList<E extends java.lang.Enum<E>>
A read-only implementation of theList
interface that is backed by an enum.class
LinkedList<T>
Implementation of theList
interface that is backed by a linked list.class
ReadOnlySequence<T>
A read-only implementation of theSequence
interface that can be used to easily implement other read-only sequences, lists, adapters, etc.static class
Sequence.Tree.ImmutablePath
Class representing an immutable path.static class
Sequence.Tree.Path
An object representing a path to a nested node in nested sequence data.Methods in org.apache.pivot.collections that return Sequence Modifier and Type Method Description Sequence<T>
ArrayList. remove(int index, int count)
Sequence<T>
LinkedList. remove(int index, int count)
Sequence<T>
List. remove(int index, int count)
Sequence<T>
ReadOnlySequence. remove(int index, int count)
Removing an item from a read-only sequence is unsupported.Sequence<T>
Sequence. remove(int index, int count)
Removes one or more items from the sequence.Sequence<java.lang.Integer>
Sequence.Tree.ImmutablePath. remove(int index, int count)
Sequence<java.lang.Integer>
Sequence.Tree.Path. remove(int index, int count)
static <T> Sequence<T>
Sequence.Tree. remove(Sequence<T> sequence, Sequence.Tree.Path path, int count)
Removes items from a nested sequence.Methods in org.apache.pivot.collections with parameters of type Sequence Modifier and Type Method Description static <T> int
Sequence.Tree. add(Sequence<T> sequence, T item, Sequence.Tree.Path path)
Adds an item to a nested sequence.static <T> Sequence.Tree.ItemIterator<T>
Sequence.Tree. depthFirstIterator(Sequence<T> sequence)
Returns an iterator that will perform a depth-first traversal of the nested sequence.static <T> T
Sequence.Tree. get(Sequence<T> sequence, Sequence.Tree.Path path)
Retrieves an item from a nested sequence.static <T> void
Sequence.Tree. insert(Sequence<T> sequence, T item, Sequence.Tree.Path path, int index)
Inserts an item into a nested sequence.void
List.ListListenerList. itemsRemoved(List<T> list, int index, Sequence<T> items)
void
ListListener.Adapter. itemsRemoved(List<T> list, int index, Sequence<T> items)
Deprecated.default void
ListListener. itemsRemoved(List<T> list, int index, Sequence<T> items)
Called when items have been removed from a list.static <T> Sequence.Tree.Path
Sequence.Tree. pathOf(Sequence<T> sequence, T item)
Returns the path to an item in a nested sequence.static <T> Sequence<T>
Sequence.Tree. remove(Sequence<T> sequence, Sequence.Tree.Path path, int count)
Removes items from a nested sequence.static <T> Sequence.Tree.Path
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.Tree.Path path, T item)
Updates an item in a nested sequence.Constructors in org.apache.pivot.collections with parameters of type Sequence Constructor Description ArrayList(Sequence<T> items)
Construct a new ArrayList with the given sequence of items.ArrayList(Sequence<T> items, int index, int count)
Construct a new ArrayList with a subset of the given sequence of items.LinkedList(Sequence<T> items)
-
Uses of Sequence in org.apache.pivot.collections.adapter
Classes in org.apache.pivot.collections.adapter that implement Sequence Modifier and Type Class Description class
ListAdapter<T>
Implementation of theList
interface that is backed by an instance ofList
; in other words, adapting ajava.util.List
to one of ourList
s.Methods in org.apache.pivot.collections.adapter that return Sequence Modifier and Type Method Description Sequence<T>
ListAdapter. remove(int index, int count)
-
Uses of Sequence in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Sequence Modifier and Type Class Description class
SynchronizedList<T>
Synchronized implementation of theList
interface.Methods in org.apache.pivot.collections.concurrent that return Sequence Modifier and Type Method Description Sequence<T>
SynchronizedList. remove(int index, int count)
-
Uses of Sequence in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Sequence Modifier and Type Class Description class
ImmutableList<T>
Unmodifiable implementation of theList
interface. -
Uses of Sequence in org.apache.pivot.io
Classes in org.apache.pivot.io that implement Sequence Modifier and Type Class Description class
FileList
Collection representing a list of files.class
FileObjectList
Collection representing a list of files. -
Uses of Sequence in org.apache.pivot.json
Methods in org.apache.pivot.json that return Sequence Modifier and Type Method Description static Sequence<java.lang.String>
JSON. parse(java.lang.String path)
Parses a JSON path into a sequence of string keys.Methods in org.apache.pivot.json with parameters of type Sequence Modifier and Type Method Description void
JSONSerializerListener.Adapter. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)
Deprecated.default void
JSONSerializerListener. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)
Called when the serializer has begun reading a sequence value.void
JSONSerializerListener.Listeners. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)
static <T> T
JSON. get(java.lang.Object root, Sequence<java.lang.String> keys)
Returns the value at a given path. -
Uses of Sequence in org.apache.pivot.serialization
Methods in org.apache.pivot.serialization that return Sequence Modifier and Type Method Description Sequence<java.lang.String>
CSVSerializer. getKeys()
Returns the keys that will be read or written by this serializer.Methods in org.apache.pivot.serialization with parameters of type Sequence Modifier and Type Method Description void
CSVSerializer. setKeys(Sequence<java.lang.String> keys)
Sets the keys that will be read or written by this serializer. -
Uses of Sequence in org.apache.pivot.sql
Classes in org.apache.pivot.sql that implement Sequence Modifier and Type Class Description class
ResultList
Implementation of theList
interface that is backed by a instance ofResultSet
.Methods in org.apache.pivot.sql that return Sequence Modifier and Type Method Description Sequence<ResultList.Field>
ResultList. getFields()
Sequence<Map<java.lang.String,java.lang.Object>>
ResultList. remove(int index, int count)
Methods in org.apache.pivot.sql with parameters of type Sequence Modifier and Type Method Description void
ResultList. setFields(Sequence<ResultList.Field> fields)
-
Uses of Sequence in org.apache.pivot.text
Constructors in org.apache.pivot.text with parameters of type Sequence Constructor Description CharSpan(Sequence<?> charSpanSequence)
Construct a new char span from the given sequence with two numeric values corresponding to the start and length values respectively, or one numeric value corresponding to the start value (length 0). -
Uses of Sequence in org.apache.pivot.util
Constructors in org.apache.pivot.util with parameters of type Sequence Constructor Description Range(Sequence<?> range)
Range(Sequence<?> range)
-
Uses of Sequence in org.apache.pivot.util.concurrent
Classes in org.apache.pivot.util.concurrent that implement Sequence Modifier and Type Class Description class
TaskSequence
Task
that runs a sequence of tasks in series and notifies listeners when all tasks are complete.Methods in org.apache.pivot.util.concurrent that return Sequence Modifier and Type Method Description Sequence<Task<?>>
TaskSequence. remove(int index, int count)
-
Uses of Sequence in org.apache.pivot.web.server
Classes in org.apache.pivot.web.server that implement Sequence Modifier and Type Class Description static class
QueryServlet.Path
Immutable string sequence representing a query path.Methods in org.apache.pivot.web.server that return Sequence Modifier and Type Method Description Sequence<java.lang.String>
QueryServlet.Path. remove(int index, int count)
-
Uses of Sequence in org.apache.pivot.wtk
Classes in org.apache.pivot.wtk that implement Sequence Modifier and Type Class Description 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 facilitate simple user interaction.class
Alert.OptionSequence
Option sequence implementation.class
Border
Container that displays a border.class
BoxPane
Container that arranges components in a line, either vertically or horizontally.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
ColorChooser
Component that allows the user to select a color.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
FileBrowser
Component representing a file browser.class
FileBrowserSheet
File browser sheet.class
FillPane
Container that fills the space it has been given inside its parent and then arranges its child components in a line, either vertically or horizontally.class
FlowPane
Container that arranges components in a horizontal line, wrapping when contents don't fit on a single line.class
Form
A container that arranges field components in a form layout.static class
Form.Section
Class representing a form section.class
Form.SectionSequence
Section sequence implementation.class
Frame
Container class representing a decorated frame window.class
GridPane
Container that arranges components in a two-dimensional grid, where every cell is the same size.static class
GridPane.Row
Represents a grid pane row.class
GridPane.RowSequence
Class that manages a grid pane's row list.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 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
Panel
Simple container that performs no layout.class
Panorama
Container that provides a scrollable view of a component.class
Prompt
Class representing a "prompt", a sheet commonly used to facilitate simple user interaction.class
Prompt.OptionSequence
Option sequence implementation.class
Rollup
Container that can be expanded or collapsed to respectively show or hide its content.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
Spinner
Component that presents a means of cycling through a list of items.class
SplitPane
ASplitPane
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
SuggestionPopup
Popup that presents a list of text suggestions to the user.class
TablePane
Container that arranges components in a two-dimensional grid, optionally spanning multiple rows and columns, much like an HTML<table>
element.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
TextArea.ParagraphSequence
Text area paragraph sequence.class
TextPane
Component that allows a user to enter and edit multiple lines of (optionally formatted) text.class
Tooltip
Window representing a "tooltip".class
VFSBrowser
A file browser that uses the Apache Commons VFS (Virtual File System) to be able to browse local and remote file systems, and browse inside of .zip, .tar, etc.class
VFSBrowserSheet
A file browser sheet that uses the Apache Commons VFS (Virtual File System) to be able to browse local and remote file systems, and browse inside of .zip, .tar, etc.class
Viewport
Abstract base class for viewport components.class
Window
Top-level container representing the entry point into a user interface.class
Window.ActionMappingSequence
class
Window.IconImageSequence
Methods in org.apache.pivot.wtk that return Sequence Modifier and Type Method Description Sequence<Span>
RangeSelection. addRange(int start, int end)
Adds a range to the selection, merging and removing intersecting ranges as needed.Sequence<Span>
RangeSelection. addRange(Span range)
Add a range to the selection, merging and removing intersecting ranges as needed.Sequence<Span>
ListView. addSelectedRange(int start, int end)
Adds a range of indexes to the selection.Sequence<Span>
ListView. addSelectedRange(Span range)
Adds a range of indexes to the selection.Sequence<Span>
TableView. addSelectedRange(int start, int end)
Adds a range of indexes to the selection.Sequence<Span>
TableView. addSelectedRange(Span range)
Adds a range of indexes to the selection.Sequence<Sequence.Tree.Path>
TreeView. getCheckedPaths()
Gets the sequence of node paths that are checked.Sequence<?>
ListView. getSelectedItems()
Sequence<?>
TableView. getSelectedRows()
Sequence<Component>
Accordion.PanelSequence. remove(int index, int count)
Sequence<Component>
Accordion. remove(int index, int count)
Sequence<java.lang.Object>
Alert.OptionSequence. remove(int index, int count)
Sequence<Component>
Border. remove(int index, int count)
Sequence<Component>
CardPane. remove(int index, int count)
Sequence<Decorator>
Component.DecoratorSequence. remove(int index, int count)
Sequence<Component>
Container. remove(int index, int count)
Sequence<Component>
Expander. remove(int index, int count)
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>
Frame. remove(int index, int count)
Sequence<Component>
GridPane. 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>
GridPane.Row. remove(int index, int count)
Sequence<GridPane.Row>
GridPane.RowSequence. 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<MenuBar.Item>
MenuBar.ItemSequence. remove(int index, int count)
Sequence<Component>
MenuBar. remove(int index, int count)
Sequence<java.lang.Object>
Prompt.OptionSequence. remove(int index, int count)
Sequence<Button>
RadioButtonGroup. remove(int index, int count)
Removecount
buttons from the group starting atindex
.Sequence<Component>
Rollup. remove(int index, int count)
Sequence<Component>
ScrollPane. remove(int index, int count)
Sequence<Component>
SplitPane. remove(int index, int count)
Sequence<TablePane.Column>
TablePane.ColumnSequence. 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<TableView.Column>
TableView.ColumnSequence. remove(int index, int count)
Sequence<Component>
TabPane. remove(int index, int count)
Sequence<Component>
TabPane.TabSequence. remove(int index, int count)
Sequence<TextArea.Paragraph>
TextArea.ParagraphSequence. remove(int index, int count)
Sequence<Component>
Viewport. remove(int index, int count)
This method should not be called to remove child components from the Viewport because the viewable child(ren) are set by theViewport.setView(org.apache.pivot.wtk.Component)
method instead.Sequence<Window.ActionMapping>
Window.ActionMappingSequence. remove(int index, int count)
Sequence<Image>
Window.IconImageSequence. remove(int index, int count)
Sequence<Component>
Window. remove(int index, int count)
Sequence<Decorator>
Component.DecoratorSequence. removeAll()
Sequence<Component>
Container. removeAll()
Sequence<Span>
RangeSelection. removeRange(int start, int end)
Removes a range from the selection, truncating and removing intersecting ranges as needed.Sequence<Span>
ListView. removeSelectedRange(int start, int end)
Removes a range of indexes from the selection.Sequence<Span>
ListView. removeSelectedRange(Span range)
Removes a range of indexes from the selection.Sequence<Span>
TableView. removeSelectedRange(int start, int end)
Removes a range of indexes from the selection.Sequence<Span>
TableView. removeSelectedRange(Span range)
Removes a range of indexes from the selection.Sequence<java.io.File>
FileBrowser. setSelectedFiles(Sequence<java.io.File> files)
Sets the selected files.Sequence<java.io.File>
FileBrowserSheet. setSelectedFiles(Sequence<java.io.File> selectedFiles)
Sets the selected files.Sequence<org.apache.commons.vfs2.FileObject>
VFSBrowser. setSelectedFiles(Sequence<org.apache.commons.vfs2.FileObject> selectedFiles)
Sets the selected files.Sequence<org.apache.commons.vfs2.FileObject>
VFSBrowserSheet. setSelectedFiles(Sequence<org.apache.commons.vfs2.FileObject> selectedFiles)
Sets the selected files.Sequence<Sequence.Tree.Path>
TreeView. setSelectedPaths(Sequence<Sequence.Tree.Path> selectedPaths)
Set the new selected nodes in the tree.Sequence<Span>
ListView. setSelectedRanges(java.lang.String selectedRanges)
Sets the selection to the given range sequence.Sequence<Span>
ListView. setSelectedRanges(Sequence<Span> selectedRanges)
Sets the selection to the given range sequence.Sequence<Span>
TableView. setSelectedRanges(java.lang.String selectedRanges)
Sets the selection to the given range sequence.Sequence<Span>
TableView. setSelectedRanges(Sequence<Span> selectedRanges)
Sets the selection to the given range sequence.Methods in org.apache.pivot.wtk with parameters of type Sequence Modifier and Type Method Description void
WindowActionMappingListener. actionMappingsRemoved(Window window, int index, Sequence<Window.ActionMapping> removed)
Called when action mappings have been removed from a window.void
WindowActionMappingListener.Listeners. actionMappingsRemoved(Window window, int index, Sequence<Window.ActionMapping> removed)
void
GridPaneListener.Adapter. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)
Deprecated.default void
GridPaneListener. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)
Called when cells have been removed from a grid pane.void
GridPaneListener.Listeners. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)
void
TablePaneListener.Adapter. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
Deprecated.default void
TablePaneListener. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
Called when cells have been removed from a table pane.void
TablePaneListener.Listeners. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)
void
TablePaneListener.Adapter. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
Deprecated.default void
TablePaneListener. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
Called when columns have been removed from a table pane.void
TablePaneListener.Listeners. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)
void
TableViewColumnListener.Adapter. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
Deprecated.default void
TableViewColumnListener. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
Called when columns are removed from a table view's column sequence.void
TableViewColumnListener.Listeners. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
void
ContainerListener.Adapter. componentsRemoved(Container container, int index, Sequence<Component> removed)
Deprecated.default void
ContainerListener. componentsRemoved(Container container, int index, Sequence<Component> removed)
Called when components have been removed from a container's component sequence.void
ContainerListener.Listeners. componentsRemoved(Container container, int index, Sequence<Component> components)
void
ComponentDecoratorListener.Adapter. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
Deprecated.default void
ComponentDecoratorListener. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
Called when decorators have been removed from a component's decorator sequence.void
ComponentDecoratorListener.Listeners. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
void
FormListener.Adapter. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
Deprecated.default void
FormListener. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
Called when form fields have been removed.void
FormListener.Listeners. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
void
WindowListener.Adapter. iconsRemoved(Window window, int index, Sequence<Image> removed)
Deprecated.default void
WindowListener. iconsRemoved(Window window, int index, Sequence<Image> removed)
Called when one or more of the window's icons were removed.void
WindowListener.Listeners. iconsRemoved(Window window, int index, Sequence<Image> removed)
void
Menu.SectionListener. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)
Called when menu items have been removed.void
Menu.SectionListener.Listeners. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)
void
MenuBarListener.Adapter. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
Deprecated.default void
MenuBarListener. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
Called when menu bar items have been removed.void
MenuBarListener.Listeners. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
void
AlertListener.Adapter. optionsRemoved(Alert alert, int index, Sequence<?> removed)
Deprecated.void
AlertListener.Listeners. optionsRemoved(Alert alert, int index, Sequence<?> removed)
default void
AlertListener. optionsRemoved(Alert alert, int index, Sequence<?> removed)
Called when options have been removed from an alert's option sequence.void
PromptListener.Adapter. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)
Deprecated.void
PromptListener.Listeners. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)
default void
PromptListener. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)
Called when options have been removed from a prompt's option sequence.void
AccordionListener.Adapter. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)
Deprecated.void
AccordionListener.Listeners. panelsRemoved(Accordion accordion, int index, Sequence<Component> panels)
default void
AccordionListener. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)
Called when a panel has been removed from an accordion's panel sequence.void
TextAreaContentListener.Adapter. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
Deprecated.void
TextAreaContentListener.Listeners. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
default void
TextAreaContentListener. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
Called when paragraphs have been removed from a text area's paragraph sequence.void
GridPaneListener.Adapter. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)
Deprecated.void
GridPaneListener.Listeners. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)
default void
GridPaneListener. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)
Called when rows have been removed from a grid pane.void
TablePaneListener.Adapter. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
Deprecated.void
TablePaneListener.Listeners. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
default void
TablePaneListener. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
Called when rows have been removed from a table pane.void
FormListener.Adapter. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
Deprecated.void
FormListener.Listeners. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
default void
FormListener. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
Called when form sections have been removed.void
MenuListener.Adapter. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
Deprecated.void
MenuListener.Listeners. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
default void
MenuListener. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
Called when menu sections have been removed.void
FileBrowserListener.Adapter. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)
Deprecated.void
FileBrowserListener.Listeners. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)
default void
FileBrowserListener. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)
Called when a file browser's selection state has been reset.void
FileBrowserSheetListener.Adapter. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)
Deprecated.void
FileBrowserSheetListener.Listeners. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)
default void
FileBrowserSheetListener. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)
Called when a file browser sheet's selection state has been reset.void
VFSBrowserListener.Adapter. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
Deprecated.void
VFSBrowserListener.Listeners. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
default void
VFSBrowserListener. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
Called when a file browser's selection state has been reset.void
VFSBrowserSheetListener.Adapter. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
Deprecated.void
VFSBrowserSheetListener.Listeners. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
default void
VFSBrowserSheetListener. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
Called when a file browser sheet's selection state has been reset.void
TreeViewSelectionListener.Adapter. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)
Deprecated.void
TreeViewSelectionListener.Listeners. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)
default void
TreeViewSelectionListener. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)
Called when a tree view's selection state has been reset.void
ListViewSelectionListener.Adapter. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
Deprecated.void
ListViewSelectionListener.Listeners. selectedRangesChanged(ListView listView, Sequence<Span> previousSelection)
default void
ListViewSelectionListener. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
Called when a list view's selection state has changed.void
TableViewSelectionListener.Adapter. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
Deprecated.void
TableViewSelectionListener.Listeners. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelection)
default void
TableViewSelectionListener. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
Called when a table view's selection state has been reset.void
Alert. setOptions(Sequence<?> options)
void
Prompt. setOptions(Sequence<?> options)
void
ScrollBar. setRange(Sequence<?> range)
void
Slider. setRange(Sequence<?> range)
void
ScrollBar. setScope(Sequence<?> scope)
Sequence<java.io.File>
FileBrowser. setSelectedFiles(Sequence<java.io.File> files)
Sets the selected files.Sequence<java.io.File>
FileBrowserSheet. setSelectedFiles(Sequence<java.io.File> selectedFiles)
Sets the selected files.Sequence<org.apache.commons.vfs2.FileObject>
VFSBrowser. setSelectedFiles(Sequence<org.apache.commons.vfs2.FileObject> selectedFiles)
Sets the selected files.Sequence<org.apache.commons.vfs2.FileObject>
VFSBrowserSheet. setSelectedFiles(Sequence<org.apache.commons.vfs2.FileObject> selectedFiles)
Sets the selected files.void
ListView. setSelectedItems(Sequence<java.lang.Object> items)
Sequence<Sequence.Tree.Path>
TreeView. setSelectedPaths(Sequence<Sequence.Tree.Path> selectedPaths)
Set the new selected nodes in the tree.Sequence<Span>
ListView. setSelectedRanges(Sequence<Span> selectedRanges)
Sets the selection to the given range sequence.Sequence<Span>
TableView. setSelectedRanges(Sequence<Span> selectedRanges)
Sets the selection to the given range sequence.void
TableView. setSelectedRows(Sequence<java.lang.Object> rows)
Dictionary<java.lang.String,SortDirection>
TableView. setSort(Sequence<Dictionary.Pair<java.lang.String,SortDirection>> sort)
Sets the table view's sort.void
Component. setStyleNames(Sequence<java.lang.String> styleNames)
Applies a set of named styles.void
TabPaneListener.Adapter. tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
Deprecated.void
TabPaneListener.Listeners. tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
default void
TabPaneListener. tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
Called when a tab has been removed from a tab pane's tab sequence.Constructors in org.apache.pivot.wtk with parameters of type Sequence Constructor Description Alert(MessageType messageType, java.lang.String message, Sequence<?> options)
Alert(MessageType messageType, java.lang.String message, Sequence<?> options, boolean modal)
Alert(MessageType messageType, java.lang.String message, Sequence<?> options, Component body)
Alert(MessageType messageType, java.lang.String message, Sequence<?> options, Component body, boolean modal)
Bounds(Sequence<?> bounds)
Construct a new bounds object given a sequence of the four needed values.CornerRadii(Sequence<?> cornerRadii)
Construct from a sequence of four numeric values.Dimensions(Sequence<?> dimensions)
Construct new dimensions from the given sequence ofNumber
values.Insets(Sequence<?> insets)
Construct a new set of insets given a sequence of values to use.Limits(Sequence<?> limits)
Point(Sequence<?> point)
Construct a point from a sequence of two number values for the X- and Y-positions respectively.Prompt(MessageType messageType, java.lang.String message, Sequence<?> options)
Prompt(MessageType messageType, java.lang.String message, Sequence<?> options, Component body)
Scope(Sequence<?> scope)
Span(Sequence<?> span)
Construct a new span from the given sequence with two numeric values corresponding to the start and end values respectively.TablePane(Sequence<TablePane.Column> columns)
Creates a newTablePane
with the specified columns. -
Uses of Sequence in org.apache.pivot.wtk.content
Classes in org.apache.pivot.wtk.content that implement Sequence Modifier and Type Class Description class
AccordionHeaderDataRenderer
Default accordion header data renderer.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
ListViewColorItemRenderer
List view renderer for displaying color swatches.class
ListViewItemEditor
Default list view item editor.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
TableViewCheckboxCellRenderer
Default renderer for table view cells that contain boolean data.class
TableViewHeaderDataRenderer
Default table view header data renderer.class
TableViewRowEditor
Default table view row editor.class
TableViewTriStateCellRenderer
Default renderer for table view cells that contain tri-state data.class
TreeBranch
Default tree branch implementation.class
TreeViewNodeEditor
Default tree view node editor.class
TreeViewNodeRenderer
class
VerticalButtonDataRenderer
A button data renderer that just positions the image and label vertically on top of each other.Methods in org.apache.pivot.wtk.content that return Sequence Modifier and Type Method Description Sequence<TableViewMultiCellRenderer.RendererMapping>
TableViewMultiCellRenderer. getRendererMappings()
Sequence<TreeNode>
TreeBranch. remove(int index, int count)
-
Uses of Sequence in org.apache.pivot.wtk.skin
Classes in org.apache.pivot.wtk.skin that implement Sequence Modifier and Type Class Description class
ColorChooserButtonSkin.ColorChooserPopup
A focusable window class used by color chooser button skins.Methods in org.apache.pivot.wtk.skin with parameters of type Sequence Modifier and Type Method Description void
GridPaneSkin. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)
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. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
void
GridPaneSkin. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)
void
TablePaneSkin. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)
void
TextAreaSkin. setMargin(Sequence<?> marginSequence)
Sets the amount of space between the edge of the TextArea and its text.void
TextPaneSkin. setMargin(Sequence<?> marginSequence)
Sets the amount of space between the edge of the TextPane and its Document.void
RulerSkin. setMarkerInsets(Sequence<?> insets)
void
BoxPaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the BoxPane and its components.void
CardPaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the CardPane and its content.void
FillPaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the FillPane and its components.void
FlowPaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the FlowPane and its components.void
GridPaneSkin. setPadding(Sequence<?> padding)
Sets the padding that will be reserved around the grid pane during layout.void
SeparatorSkin. setPadding(Sequence<?> paddingSequence)
Sets the amount of space to leave around the Separator's heading, and above and below the entire component.void
StackPaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the StackPane and its components.void
TablePaneSkin. setPadding(Sequence<?> padding)
Sets the amount of space that will be reserved around the inside edges of the table pane. -
Uses of Sequence in org.apache.pivot.wtk.skin.terra
Classes in org.apache.pivot.wtk.skin.terra that implement Sequence Modifier and Type Class Description static class
TerraFileBrowserSkin.DriveRenderer
Abstract base class for drive renderers.static class
TerraFileBrowserSkin.FileRenderer
Abstract renderer for displaying file system contents.static class
TerraFileBrowserSkin.ListButtonDriveRenderer
List button drive renderer.static class
TerraFileBrowserSkin.ListButtonFileRenderer
List button file renderer.static class
TerraFileBrowserSkin.ListViewDriveRenderer
List view drive renderer.static class
TerraFileBrowserSkin.ListViewFileRenderer
List view file renderer.static class
TerraFileBrowserSkin.TableViewFileRenderer
Table view file renderer.static class
TerraVFSBrowserSkin.DriveRenderer
Abstract base class for drive renderers.static class
TerraVFSBrowserSkin.FileRenderer
Abstract renderer for displaying file system contents.static class
TerraVFSBrowserSkin.ListButtonDriveRenderer
List button drive renderer.static class
TerraVFSBrowserSkin.ListButtonFileRenderer
List button file renderer.static class
TerraVFSBrowserSkin.ListViewDriveRenderer
List view drive renderer.static class
TerraVFSBrowserSkin.ListViewFileRenderer
List view file renderer.static class
TerraVFSBrowserSkin.TableViewFileRenderer
Table view file renderer.Methods in org.apache.pivot.wtk.skin.terra with parameters of type Sequence Modifier and Type Method Description void
TerraTableViewHeaderSkin. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
void
TerraTableViewSkin. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)
void
TerraFormSkin. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
void
TerraFrameSkin. iconsRemoved(Window window, int index, Sequence<Image> removed)
void
TerraMenuBarSkin. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
void
TerraMenuSkin. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)
void
TerraAlertSkin. optionsRemoved(Alert alert, int index, Sequence<?> removed)
void
TerraPromptSkin. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)
void
TerraAccordionSkin. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)
void
TerraFormSkin. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
void
TerraMenuSkin. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)
void
TerraFileBrowserSheetSkin. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)
void
TerraFileBrowserSkin. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)
void
TerraVFSBrowserSheetSkin. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
void
TerraVFSBrowserSkin. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)
void
TerraTreeViewSkin. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)
void
TerraListViewSkin. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
void
TerraTableViewSkin. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
void
TerraAccordionSkin. setButtonPadding(Sequence<?> buttonPadding)
void
TerraAccordionSkin. setPadding(Sequence<?> padding)
void
TerraCalendarButtonSkin. setPadding(Sequence<?> padding)
void
TerraColorChooserButtonSkin. setPadding(Sequence<?> padding)
void
TerraExpanderSkin. setPadding(Sequence<?> padding)
void
TerraFormSkin. setPadding(Sequence<?> padding)
void
TerraFrameSkin. setPadding(Sequence<?> padding)
void
TerraGaugeSkin. setPadding(Sequence<?> padding)
Sets the amount of space to leave between the edge of the gauge area and the actual drawing.void
TerraListButtonSkin. setPadding(Sequence<?> padding)
void
TerraMenuButtonSkin. setPadding(Sequence<?> padding)
void
TerraPaletteSkin. setPadding(Sequence<?> padding)
void
TerraPushButtonSkin. setPadding(Sequence<?> padding)
void
TerraSheetSkin. setPadding(Sequence<?> padding)
void
TerraTextInputSkin. setPadding(Sequence<?> paddingSequence)
void
TerraTabPaneSkin. tabsRemoved(TabPane tabPane, int index, Sequence<Component> removed)
-
Uses of Sequence in org.apache.pivot.wtk.text
Classes in org.apache.pivot.wtk.text that implement Sequence Modifier and Type Class Description 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.static class
List.Item
Element representing a list item.class
NumberedList
Element representing a numbered list.class
Paragraph
Element representing a paragraph.class
TextSpan
Element representing an inline range of styled characters.Methods in org.apache.pivot.wtk.text that return Sequence Modifier and Type Method Description 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)
Get the path through our descendants for the given offset into this paragraph.Sequence<Node>
Element. remove(int index, int count)
Methods in org.apache.pivot.wtk.text with parameters of type Sequence Modifier and Type Method Description void
ElementListener.Adapter. nodesRemoved(Element element, int index, Sequence<Node> nodes)
Deprecated.void
ElementListener.Listeners. nodesRemoved(Element element, int index, Sequence<Node> nodes)
default void
ElementListener. nodesRemoved(Element element, int index, Sequence<Node> nodes)
Called when nodes have been removed from an element.protected void
Node. nodesRemoved(Node node, Sequence<Node> removed, int offsetArgument)
Called to notify parent nodes and other listeners for the node that child nodes have been removed.void
NodeListener.Adapter. nodesRemoved(Node node, Sequence<Node> removed, int offset)
Deprecated.void
NodeListener.Listeners. nodesRemoved(Node node, Sequence<Node> removed, int offset)
default void
NodeListener. nodesRemoved(Node node, Sequence<Node> removed, int offset)
Called when child nodes have been removed from a node. -
Uses of Sequence in org.apache.pivot.xml
Classes in org.apache.pivot.xml that implement Sequence Modifier and Type Class Description class
Element
Node class representing an XML element.class
Element.AttributeSequence
Sequence representing the attributes declared by this element.Methods in org.apache.pivot.xml that return Sequence Modifier and Type Method Description Sequence<Element.Attribute>
Element.AttributeSequence. remove(int index, int count)
Removes a range of attributes from the sequence.Sequence<Node>
Element. remove(int index, int count)
Removes a range of nodes from this element.Methods in org.apache.pivot.xml with parameters of type Sequence Modifier and Type Method Description void
ElementListener.Adapter. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
Deprecated.default void
ElementListener. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
Called when attributes have been removed from an element.void
ElementListener.Listeners. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
-