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.utilcollections.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 classChartView.CategorySequenceInternal 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 voidChartViewCategoryListener. categoriesRemoved(ChartView chartView, int index, Sequence<ChartView.Category> categories)Fired when a category is removed from a chart view.voidChartViewCategoryListener.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 classHistogramSeries<T>classValueSeries<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 voidChartViewSkin. 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 interfaceList<T>Collection interface representing an ordered sequence of items.Classes in org.apache.pivot.collections that implement Sequence Modifier and Type Class Description classArrayAdapter<T>A read-only implementation of theSequenceinterface that wraps an array.classArrayList<T>Implementation of theListinterface that is backed by an array.classEnumList<E extends java.lang.Enum<E>>A read-only implementation of theListinterface that is backed by an enum.classLinkedList<T>Implementation of theListinterface that is backed by a linked list.classReadOnlySequence<T>A read-only implementation of theSequenceinterface that can be used to easily implement other read-only sequences, lists, adapters, etc.static classSequence.Tree.ImmutablePathClass representing an immutable path.static classSequence.Tree.PathAn 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> intSequence.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> TSequence.Tree. get(Sequence<T> sequence, Sequence.Tree.Path path)Retrieves an item from a nested sequence.static <T> voidSequence.Tree. insert(Sequence<T> sequence, T item, Sequence.Tree.Path path, int index)Inserts an item into a nested sequence.voidList.ListListenerList. itemsRemoved(List<T> list, int index, Sequence<T> items)voidListListener.Adapter. itemsRemoved(List<T> list, int index, Sequence<T> items)Deprecated.default voidListListener. itemsRemoved(List<T> list, int index, Sequence<T> items)Called when items have been removed from a list.static <T> Sequence.Tree.PathSequence.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.PathSequence.Tree. remove(Sequence<T> sequence, T item)Removes the first occurrence of an item from a nested sequence.static <T> TSequence.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 classListAdapter<T>Implementation of theListinterface that is backed by an instance ofList; in other words, adapting ajava.util.Listto one of ourLists.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 classSynchronizedList<T>Synchronized implementation of theListinterface.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 classImmutableList<T>Unmodifiable implementation of theListinterface. -
Uses of Sequence in org.apache.pivot.io
Classes in org.apache.pivot.io that implement Sequence Modifier and Type Class Description classFileListCollection representing a list of files.classFileObjectListCollection 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 voidJSONSerializerListener.Adapter. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)Deprecated.default voidJSONSerializerListener. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)Called when the serializer has begun reading a sequence value.voidJSONSerializerListener.Listeners. beginSequence(JSONSerializer jsonSerializer, Sequence<?> value)static <T> TJSON. 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 voidCSVSerializer. 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 classResultListImplementation of theListinterface 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 voidResultList. 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 classTaskSequenceTaskthat 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 classQueryServlet.PathImmutable 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 classAccordionComponent that provides access to a set of components via selectable headers.classAccordion.PanelSequencePanel sequence implementation.classAlertClass representing an "alert", a dialog commonly used to facilitate simple user interaction.classAlert.OptionSequenceOption sequence implementation.classBorderContainer that displays a border.classBoxPaneContainer that arranges components in a line, either vertically or horizontally.classCalendarComponent that allows the user to select a date.classCardPaneContainer that behaves like a deck of cards, only one of which may be visible at a time.classColorChooserComponent that allows the user to select a color.classComponent.DecoratorSequenceDecorator sequence implementation.classContainerAbstract base class for containers.classDialogWindow class whose primary purpose is to facilitate interaction between an application and a user.classDisplayContainer that serves as the root of a component hierarchy.classExpanderNavigation container that allows a user to expand and collapse a content component.classFileBrowserComponent representing a file browser.classFileBrowserSheetFile browser sheet.classFillPaneContainer that fills the space it has been given inside its parent and then arranges its child components in a line, either vertically or horizontally.classFlowPaneContainer that arranges components in a horizontal line, wrapping when contents don't fit on a single line.classFormA container that arranges field components in a form layout.static classForm.SectionClass representing a form section.classForm.SectionSequenceSection sequence implementation.classFrameContainer class representing a decorated frame window.classGridPaneContainer that arranges components in a two-dimensional grid, where every cell is the same size.static classGridPane.RowRepresents a grid pane row.classGridPane.RowSequenceClass that manages a grid pane's row list.classMenuComponent that presents a cascading menu.static classMenu.SectionClass representing a menu section.classMenu.SectionSequenceSection sequence implementation.classMenuBarComponent representing a menu bar.classMenuBar.ItemSequenceItem sequence implementation.classMenuPopupPopup class that displays a cascading menu.classPaletteWindow representing a "tool palette".classPanelSimple container that performs no layout.classPanoramaContainer that provides a scrollable view of a component.classPromptClass representing a "prompt", a sheet commonly used to facilitate simple user interaction.classPrompt.OptionSequenceOption sequence implementation.classRollupContainer that can be expanded or collapsed to respectively show or hide its content.classScrollBarComponent that allows a user to select one of a range of values.classScrollPaneContainer that provides a scrollable view of a component, with optional fixed row and column headers.classSheetWindow class representing a "sheet".classSliderAllows a user to select one of a range of values.classSpinnerComponent that presents a means of cycling through a list of items.classSplitPaneASplitPaneis a container component that splits its size up into two regions, each of which is capable of holding one component.classStackPaneContainer that behaves like a stack of transparencies, all of which are visible at the same time.classSuggestionPopupPopup that presents a list of text suggestions to the user.classTablePaneContainer that arranges components in a two-dimensional grid, optionally spanning multiple rows and columns, much like an HTML<table>element.classTablePane.ColumnSequenceClass that manages a table pane's column list.static classTablePane.RowRepresents a table pane row.classTablePane.RowSequenceClass that manages a table pane's row list.classTableView.ColumnSequenceColumn sequence implementation.classTabPaneContainer that provides access to a set of components via selectable tabs, only one of which is visible at a time.classTabPane.TabSequenceTab sequence implementation.classTextArea.ParagraphSequenceText area paragraph sequence.classTextPaneComponent that allows a user to enter and edit multiple lines of (optionally formatted) text.classTooltipWindow representing a "tooltip".classVFSBrowserA 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.classVFSBrowserSheetA 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.classViewportAbstract base class for viewport components.classWindowTop-level container representing the entry point into a user interface.classWindow.ActionMappingSequenceclassWindow.IconImageSequenceMethods 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)Removecountbuttons 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 voidWindowActionMappingListener. actionMappingsRemoved(Window window, int index, Sequence<Window.ActionMapping> removed)Called when action mappings have been removed from a window.voidWindowActionMappingListener.Listeners. actionMappingsRemoved(Window window, int index, Sequence<Window.ActionMapping> removed)voidGridPaneListener.Adapter. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)Deprecated.default voidGridPaneListener. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)Called when cells have been removed from a grid pane.voidGridPaneListener.Listeners. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)voidTablePaneListener.Adapter. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)Deprecated.default voidTablePaneListener. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)Called when cells have been removed from a table pane.voidTablePaneListener.Listeners. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)voidTablePaneListener.Adapter. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)Deprecated.default voidTablePaneListener. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)Called when columns have been removed from a table pane.voidTablePaneListener.Listeners. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)voidTableViewColumnListener.Adapter. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)Deprecated.default voidTableViewColumnListener. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)Called when columns are removed from a table view's column sequence.voidTableViewColumnListener.Listeners. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)voidContainerListener.Adapter. componentsRemoved(Container container, int index, Sequence<Component> removed)Deprecated.default voidContainerListener. componentsRemoved(Container container, int index, Sequence<Component> removed)Called when components have been removed from a container's component sequence.voidContainerListener.Listeners. componentsRemoved(Container container, int index, Sequence<Component> components)voidComponentDecoratorListener.Adapter. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)Deprecated.default voidComponentDecoratorListener. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)Called when decorators have been removed from a component's decorator sequence.voidComponentDecoratorListener.Listeners. decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)voidFormListener.Adapter. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)Deprecated.default voidFormListener. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)Called when form fields have been removed.voidFormListener.Listeners. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)voidWindowListener.Adapter. iconsRemoved(Window window, int index, Sequence<Image> removed)Deprecated.default voidWindowListener. iconsRemoved(Window window, int index, Sequence<Image> removed)Called when one or more of the window's icons were removed.voidWindowListener.Listeners. iconsRemoved(Window window, int index, Sequence<Image> removed)voidMenu.SectionListener. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)Called when menu items have been removed.voidMenu.SectionListener.Listeners. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)voidMenuBarListener.Adapter. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)Deprecated.default voidMenuBarListener. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)Called when menu bar items have been removed.voidMenuBarListener.Listeners. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)voidAlertListener.Adapter. optionsRemoved(Alert alert, int index, Sequence<?> removed)Deprecated.voidAlertListener.Listeners. optionsRemoved(Alert alert, int index, Sequence<?> removed)default voidAlertListener. optionsRemoved(Alert alert, int index, Sequence<?> removed)Called when options have been removed from an alert's option sequence.voidPromptListener.Adapter. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)Deprecated.voidPromptListener.Listeners. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)default voidPromptListener. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)Called when options have been removed from a prompt's option sequence.voidAccordionListener.Adapter. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)Deprecated.voidAccordionListener.Listeners. panelsRemoved(Accordion accordion, int index, Sequence<Component> panels)default voidAccordionListener. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)Called when a panel has been removed from an accordion's panel sequence.voidTextAreaContentListener.Adapter. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)Deprecated.voidTextAreaContentListener.Listeners. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)default voidTextAreaContentListener. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)Called when paragraphs have been removed from a text area's paragraph sequence.voidGridPaneListener.Adapter. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)Deprecated.voidGridPaneListener.Listeners. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)default voidGridPaneListener. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)Called when rows have been removed from a grid pane.voidTablePaneListener.Adapter. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)Deprecated.voidTablePaneListener.Listeners. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)default voidTablePaneListener. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)Called when rows have been removed from a table pane.voidFormListener.Adapter. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)Deprecated.voidFormListener.Listeners. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)default voidFormListener. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)Called when form sections have been removed.voidMenuListener.Adapter. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)Deprecated.voidMenuListener.Listeners. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)default voidMenuListener. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)Called when menu sections have been removed.voidFileBrowserListener.Adapter. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)Deprecated.voidFileBrowserListener.Listeners. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)default voidFileBrowserListener. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)Called when a file browser's selection state has been reset.voidFileBrowserSheetListener.Adapter. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)Deprecated.voidFileBrowserSheetListener.Listeners. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)default voidFileBrowserSheetListener. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)Called when a file browser sheet's selection state has been reset.voidVFSBrowserListener.Adapter. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)Deprecated.voidVFSBrowserListener.Listeners. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)default voidVFSBrowserListener. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)Called when a file browser's selection state has been reset.voidVFSBrowserSheetListener.Adapter. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)Deprecated.voidVFSBrowserSheetListener.Listeners. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)default voidVFSBrowserSheetListener. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)Called when a file browser sheet's selection state has been reset.voidTreeViewSelectionListener.Adapter. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)Deprecated.voidTreeViewSelectionListener.Listeners. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)default voidTreeViewSelectionListener. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)Called when a tree view's selection state has been reset.voidListViewSelectionListener.Adapter. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)Deprecated.voidListViewSelectionListener.Listeners. selectedRangesChanged(ListView listView, Sequence<Span> previousSelection)default voidListViewSelectionListener. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)Called when a list view's selection state has changed.voidTableViewSelectionListener.Adapter. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)Deprecated.voidTableViewSelectionListener.Listeners. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelection)default voidTableViewSelectionListener. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)Called when a table view's selection state has been reset.voidAlert. setOptions(Sequence<?> options)voidPrompt. setOptions(Sequence<?> options)voidScrollBar. setRange(Sequence<?> range)voidSlider. setRange(Sequence<?> range)voidScrollBar. 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.voidListView. 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.voidTableView. 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.voidComponent. setStyleNames(Sequence<java.lang.String> styleNames)Applies a set of named styles.voidTabPaneListener.Adapter. tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)Deprecated.voidTabPaneListener.Listeners. tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)default voidTabPaneListener. 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 ofNumbervalues.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 newTablePanewith 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 classAccordionHeaderDataRendererDefault accordion header data renderer.classButtonDataRendererDefault button data renderer.classCalendarButtonDataRendererDefault calendar button data renderer.classCalendarDateSpinnerDataSpinner data model that presents a bounded list of calendar dates.classLinkButtonDataRendererDefault link button data renderer.classListButtonDataRendererDefault list button data renderer.classListViewColorItemRendererList view renderer for displaying color swatches.classListViewItemEditorDefault list view item editor.classListViewItemRendererDefault list view item renderer.classMenuBarItemDataRendererDefault menu bar item data renderer.classMenuButtonDataRendererDefault menu button data renderer.classMenuItemDataRendererDefault menu item data renderer.classNumericSpinnerDataSpinner data model that presents a bounded list of integers.classTableViewBooleanCellRendererDefault renderer for table view cells that contain boolean data.classTableViewCheckboxCellRendererDefault renderer for table view cells that contain boolean data.classTableViewHeaderDataRendererDefault table view header data renderer.classTableViewRowEditorDefault table view row editor.classTableViewTriStateCellRendererDefault renderer for table view cells that contain tri-state data.classTreeBranchDefault tree branch implementation.classTreeViewNodeEditorDefault tree view node editor.classTreeViewNodeRendererclassVerticalButtonDataRendererA 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 classColorChooserButtonSkin.ColorChooserPopupA 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 voidGridPaneSkin. cellsRemoved(GridPane.Row row, int column, Sequence<Component> removed)voidTablePaneSkin. cellsRemoved(TablePane.Row row, int column, Sequence<Component> removed)voidTablePaneSkin. columnsRemoved(TablePane tablePane, int index, Sequence<TablePane.Column> columns)voidCardPaneSkin. componentsRemoved(Container container, int index, Sequence<Component> removed)voidContainerSkin. componentsRemoved(Container container, int index, Sequence<Component> removed)voidTextAreaSkin. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)voidGridPaneSkin. rowsRemoved(GridPane gridPane, int index, Sequence<GridPane.Row> rows)voidTablePaneSkin. rowsRemoved(TablePane tablePane, int index, Sequence<TablePane.Row> rows)voidTextAreaSkin. setMargin(Sequence<?> marginSequence)Sets the amount of space between the edge of the TextArea and its text.voidTextPaneSkin. setMargin(Sequence<?> marginSequence)Sets the amount of space between the edge of the TextPane and its Document.voidRulerSkin. setMarkerInsets(Sequence<?> insets)voidBoxPaneSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the BoxPane and its components.voidCardPaneSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the CardPane and its content.voidFillPaneSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the FillPane and its components.voidFlowPaneSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the FlowPane and its components.voidGridPaneSkin. setPadding(Sequence<?> padding)Sets the padding that will be reserved around the grid pane during layout.voidSeparatorSkin. setPadding(Sequence<?> paddingSequence)Sets the amount of space to leave around the Separator's heading, and above and below the entire component.voidStackPaneSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the StackPane and its components.voidTablePaneSkin. 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 classTerraFileBrowserSkin.DriveRendererAbstract base class for drive renderers.static classTerraFileBrowserSkin.FileRendererAbstract renderer for displaying file system contents.static classTerraFileBrowserSkin.ListButtonDriveRendererList button drive renderer.static classTerraFileBrowserSkin.ListButtonFileRendererList button file renderer.static classTerraFileBrowserSkin.ListViewDriveRendererList view drive renderer.static classTerraFileBrowserSkin.ListViewFileRendererList view file renderer.static classTerraFileBrowserSkin.TableViewFileRendererTable view file renderer.static classTerraVFSBrowserSkin.DriveRendererAbstract base class for drive renderers.static classTerraVFSBrowserSkin.FileRendererAbstract renderer for displaying file system contents.static classTerraVFSBrowserSkin.ListButtonDriveRendererList button drive renderer.static classTerraVFSBrowserSkin.ListButtonFileRendererList button file renderer.static classTerraVFSBrowserSkin.ListViewDriveRendererList view drive renderer.static classTerraVFSBrowserSkin.ListViewFileRendererList view file renderer.static classTerraVFSBrowserSkin.TableViewFileRendererTable view file renderer.Methods in org.apache.pivot.wtk.skin.terra with parameters of type Sequence Modifier and Type Method Description voidTerraTableViewHeaderSkin. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)voidTerraTableViewSkin. columnsRemoved(TableView tableView, int index, Sequence<TableView.Column> columns)voidTerraFormSkin. fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)voidTerraFrameSkin. iconsRemoved(Window window, int index, Sequence<Image> removed)voidTerraMenuBarSkin. itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)voidTerraMenuSkin. itemsRemoved(Menu.Section section, int index, Sequence<Menu.Item> removed)voidTerraAlertSkin. optionsRemoved(Alert alert, int index, Sequence<?> removed)voidTerraPromptSkin. optionsRemoved(Prompt prompt, int index, Sequence<?> removed)voidTerraAccordionSkin. panelsRemoved(Accordion accordion, int index, Sequence<Component> removed)voidTerraFormSkin. sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)voidTerraMenuSkin. sectionsRemoved(Menu menu, int index, Sequence<Menu.Section> removed)voidTerraFileBrowserSheetSkin. selectedFilesChanged(FileBrowserSheet fileBrowserSheet, Sequence<java.io.File> previousSelectedFiles)voidTerraFileBrowserSkin. selectedFilesChanged(FileBrowser fileBrowser, Sequence<java.io.File> previousSelectedFiles)voidTerraVFSBrowserSheetSkin. selectedFilesChanged(VFSBrowserSheet fileBrowserSheet, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)voidTerraVFSBrowserSkin. selectedFilesChanged(VFSBrowser fileBrowser, Sequence<org.apache.commons.vfs2.FileObject> previousSelectedFiles)voidTerraTreeViewSkin. selectedPathsChanged(TreeView treeView, Sequence<Sequence.Tree.Path> previousSelectedPaths)voidTerraListViewSkin. selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)voidTerraTableViewSkin. selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)voidTerraAccordionSkin. setButtonPadding(Sequence<?> buttonPadding)voidTerraAccordionSkin. setPadding(Sequence<?> padding)voidTerraCalendarButtonSkin. setPadding(Sequence<?> padding)voidTerraColorChooserButtonSkin. setPadding(Sequence<?> padding)voidTerraExpanderSkin. setPadding(Sequence<?> padding)voidTerraFormSkin. setPadding(Sequence<?> padding)voidTerraFrameSkin. setPadding(Sequence<?> padding)voidTerraGaugeSkin. setPadding(Sequence<?> padding)Sets the amount of space to leave between the edge of the gauge area and the actual drawing.voidTerraListButtonSkin. setPadding(Sequence<?> padding)voidTerraMenuButtonSkin. setPadding(Sequence<?> padding)voidTerraPaletteSkin. setPadding(Sequence<?> padding)voidTerraPushButtonSkin. setPadding(Sequence<?> padding)voidTerraSheetSkin. setPadding(Sequence<?> padding)voidTerraTextInputSkin. setPadding(Sequence<?> paddingSequence)voidTerraTabPaneSkin. 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 classBlockAbstract base class for block elements.classBulletedListElement representing a bulleted list.classDocumentNode representing the root of an element hierarchy.classElementAbstract base class for elements.classListAbstract base class for list elements.static classList.ItemElement representing a list item.classNumberedListElement representing a numbered list.classParagraphElement representing a paragraph.classTextSpanElement 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 voidElementListener.Adapter. nodesRemoved(Element element, int index, Sequence<Node> nodes)Deprecated.voidElementListener.Listeners. nodesRemoved(Element element, int index, Sequence<Node> nodes)default voidElementListener. nodesRemoved(Element element, int index, Sequence<Node> nodes)Called when nodes have been removed from an element.protected voidNode. 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.voidNodeListener.Adapter. nodesRemoved(Node node, Sequence<Node> removed, int offset)Deprecated.voidNodeListener.Listeners. nodesRemoved(Node node, Sequence<Node> removed, int offset)default voidNodeListener. 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 classElementNode class representing an XML element.classElement.AttributeSequenceSequence 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 voidElementListener.Adapter. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)Deprecated.default voidElementListener. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)Called when attributes have been removed from an element.voidElementListener.Listeners. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
-