alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */
/*
 * VeryComplexListDataEvent.java
 *
 * Created on November 6, 2003, 10:28 AM
 */

package org.netbeans.swing.tabcontrol.event;

import org.netbeans.swing.tabcontrol.TabData;

import java.util.Arrays;

/**
 * Event which provides granular data on setTabs() events which may contain
 * arbitrary differences, moves, additions and removals of array contents (or no
 * changes at all).
 * 

* This event class is used in the case of calls to TabDataModel.setTabs(), * where one array of TabData objects is replaced with a different array of * TabData objects, which may contain additions, removals, deletions or moves. * The heavy lifting is done by ArrayDiff, which provides lists of * the affected indices for those things that are added/removed/changed/ * deleted. *

* Note that this class should eventually be merged with ComplexListDataEvent, along with * some normalization of how things are done - it was written for expedience, not beauty. * * @author Tim Boudreau * @see org.netbeans.swing.tabcontrol.event.ArrayDiff */ public final class VeryComplexListDataEvent extends ComplexListDataEvent { TabData[] old, nue; //XXX, probably the structure of ComplexListDataEvent should eventually //be modified to work more like this; the question is if it's killing //a mosquito with a sledgehammer for simple changes - most changes will //be simple, after all. /** * Creates a new instance of VeryComplexListDataEvent */ public VeryComplexListDataEvent(Object source, TabData[] old, TabData[] nue) { super(source, ITEMS_CHANGED, -1, -1); this.old = old; this.nue = nue; } /** * Returns an ArrayDiff object if the two arrays this event was created with * are not identical */ public ArrayDiff getDiff() { return ArrayDiff.createDiff(old, nue); } public String toString() { StringBuffer sb = new StringBuffer(); sb.append("VeryComplexListEvent - old array: "); sb.append(Arrays.asList(old)); sb.append(" new array: "); sb.append(Arrays.asList(nue)); sb.append(" diff: "); sb.append(getDiff()); return sb.toString(); } private static final void arr2str(Object[] o, StringBuffer sb) { for (int i = 0; i < o.length; i++) { sb.append(o[i]); if (i != o.length - 1) { sb.append(","); //NOI18N } } } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.