/** Used to create an event when nodes have been changed, inserted, or
* removed, identifying the path to the parent of the modified items as
* an array of Objects.
*/
TreeModelEvent(Object source, Object[] objects, int[] childIndices, Object[] children) {
this(source, new TreePath(objects), childIndices, children);
}