Uses of Class
pivot.wtk.Span

Packages that use Span
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of Span in pivot.wtk
 

Methods in pivot.wtk that return Span
 Span Span.createIntersection(Span span)
          Determines the intersection of this span and another span.
 Span Span.createUnion(Span span)
          Determines the union of this span and another span.
 Span SpanSequence.get(int index)
          Retrieves the span at the given index.
 Span ScrollBar.getRange()
           
 Span TextInput.getSelectionRange()
          Returns a span representing the current selection.
 Span SplitPane.getSplitBounds()
           
 Span SpanSequence.update(int index, Span span)
          Not supported.
 

Methods in pivot.wtk that return types with arguments of type Span
 Sequence<Span> TableView.getSelectedRanges()
          Returns the table's current selection.
 Sequence<Span> ListView.getSelectedRanges()
          Returns the list's current selection.
 Sequence<Span> SpanSequence.remove(int index, int count)
          Removes one or more spans from the sequence.
 

Methods in pivot.wtk with parameters of type Span
 int SpanSequence.add(Span span)
          Adds a span to the sequence, merging and removing intersecting spans as needed.
 void TableView.addSelectedRange(Span range)
          Adds a range of indexes to the selection.
 void ListView.addSelectedRange(Span range)
          Adds a range of indexes to the selection.
 int SpanSequence.SpanComparator.compare(Span span1, Span span2)
          Compares two span values.
 boolean Span.contains(Span span)
          Determines whether this span contains another span.
 Span Span.createIntersection(Span span)
          Determines the intersection of this span and another span.
 Span Span.createUnion(Span span)
          Determines the union of this span and another span.
 int SpanSequence.indexOf(Span span)
          Returns the index of the first identified span that intersects with the given span, or a negative value representing the insertion point of the span as defined by the binary search algorithm.
 void SpanSequence.insert(Span span, int index)
          Not supported.
 boolean Span.intersects(Span span)
          Determines whether this span intersects with another span.
 boolean TableView.isRangeSelected(Span range)
          Returns the selection state of a given range.
 boolean ListView.isRangeSelected(Span range)
          Returns the selection state of a given range.
 int SpanSequence.remove(Span span)
          Removes a span from the sequence, truncating and removing intersecting spans as needed.
 void TableView.removeSelectedRange(Span range)
          Removes a range of indexes from the selection.
 void ListView.removeSelectedRange(Span range)
          Removes a range of indexes from the selection.
 void SplitPane.setSplitBounds(Span splitBounds)
           
 void SplitPaneListener.splitBoundsChanged(SplitPane splitPane, Span previousSplitBounds)
          Called when a split pane's split bounds have changed.
 Span SpanSequence.update(int index, Span span)
          Not supported.
 

Method parameters in pivot.wtk with type arguments of type Span
 void ListViewSelectionListener.selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
          Called when a list view's selection state has been reset.
 void ListViewSelectionListener.Adapter.selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
           
 void TableViewSelectionListener.selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
          Called when a table view's selection state has been reset.
 void TableViewSelectionListener.Adapter.selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)
           
 void TableView.setSelectedRanges(Sequence<Span> selectedRanges)
          Sets the selection to the given span sequence.
 void ListView.setSelectedRanges(Sequence<Span> selectedRanges)
          Sets the selection to the given span sequence.
 

Constructors in pivot.wtk with parameters of type Span
Span(Span span)
           
 

Uses of Span in pivot.wtk.skin.terra
 

Methods in pivot.wtk.skin.terra with parameters of type Span
 void TerraSplitPaneSkin.splitBoundsChanged(SplitPane splitPane, Span previousSplitBounds)
           
 

Method parameters in pivot.wtk.skin.terra with type arguments of type Span
 void TerraListViewSkin.selectedRangesChanged(ListView listView, Sequence<Span> previousSelectedRanges)
           
 void TerraTableViewSkin.selectedRangesChanged(TableView tableView, Sequence<Span> previousSelectedRanges)