3
I Use This!
Activity Not Available

Commits : Listings

Analyzed 11 months ago. based on code collected 11 months ago.
Jan 20, 2023 — Jan 20, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
The Double Columns created by PiePlot.createPieData(DataSource) contain the start and end values of slices. More... over 8 years ago
PiePlot.createPieData(DataSource) now creates two Double columns for each numeric column. More... over 8 years ago
Cleaned up code in PiePlot.createPieData(DataSource). More... over 8 years ago
Fixed a bug in Column that caused an exception when calling Column.get(int) with Column.size() as a parameter. More... over 8 years ago
Iterables.take(Iterable, int) returns no more elements than specified. More... over 8 years ago
Added Iterables.take(Iterable, int) that creates a new Iterable from the specified Iterable which only contains the speicified number of elements. More... over 8 years ago
Added Iterables.concatenate(Iterable...) which concatenates the specified iterables. More... over 8 years ago
ConcatenationIterator.next() throws a NoSuchElementException when all underlying iterators are empty. More... over 8 years ago
ConcatenationIterator.next() returns the first element of the first non-empty iterator. More... over 8 years ago
ConcatenationIterator.next() advances the underlying iterator. More... over 8 years ago
ConcatenationIterator.hasNext() returns true if any of the underlying iterators has remaining items. More... over 8 years ago
Added class ConcatenationIterator, which will concatenate an arbitrary number of iterators. More... over 8 years ago
DataSource.getColumn(int) now returns a generic Column object. More... over 8 years ago
Deduplicated code in Column. More... over 8 years ago
Column can be created from a data type and an Iterable. More... over 8 years ago
Column no longer extends DataAccessor. More... over 8 years ago
Removed warnings in ColumnTest. ColumnTest now uses generic Column objects. More... over 8 years ago
Column.equals(Object) returns false, if the second column has the same type but different data. More... over 8 years ago
Column.equals(Object) returns false, if the second column has a different data type. More... over 8 years ago
Column.equals(Object) returns false, if the second object is not of type column. More... over 8 years ago
Column.equals(Object) returns true, if the second column has identical type and content. More... over 8 years ago
Column no longer makes use of DataAccessor.getSource(). More... over 8 years ago
Column is now generic. More... over 8 years ago
Removed unnecessary references to DataTable in ColumnTest. More... over 8 years ago
Column now stores actual data instead of reading data from the underlying source. Replaced constructor Column(DataSource, int) with Column(Class, Comparable). More... over 8 years ago
Simplified code in PiePlot.createPieData(DataSource). More... over 8 years ago
DataTable can now be created from Column objects. More... over 8 years ago
Added method to Column that allows retrieving the type of the stored data. More... over 8 years ago
Added a filter that accumulates the values of an Iterable with numbers. More... over 8 years ago
PiePlot.createPieData(DataSource) no longer changes non-numeric columns of the original DataSource. More... over 8 years ago