jfree / jfreechart

A 2D chart library for Java applications (JavaFX, Swing or server-side).
http://www.jfree.org/jfreechart/
GNU Lesser General Public License v2.1
1.22k stars 462 forks source link

Removal of AbstractObjectList #108

Open lemming622 opened 5 years ago

lemming622 commented 5 years ago

Is it possible to remove the AbstactObjectList and replace it's Direct Known Subclasses (BooleanList, ObjectList, PaintList, ShapeList, StrokeList) with ArrayLists of the List types? This would help make the code slightly easier to read and understand; as well as, use the provided ArrayList class as the backing class vs a self made class that emulates it now.

lemming622 commented 4 years ago

As generics are being implemented into the rest of the code base for JFreeChart can this be investigated for removal?