//**************************************************************************** //Copyright (C) 2003 Macromedia, Inc. All Rights Reserved. //The following is Sample Code and is subject to all restrictions on //such code as contained in the End User License Agreement accompanying //this product. //**************************************************************************** /** The DeltaPacketConsts class provides a set of static constants used by the DeltaPacket interfaces and classes that make use of them. @author Mark Rausch */ class mx.data.components.datasetclasses.DeltaPacketConsts extends Object { public static var Added:Number = 0; public static var Removed:Number = 1; public static var Modified:Number = 2; }