Sha256: 19c325626fa6b5ad94d16a2272ccd2803d72975f68c9e6cd1a845df6993cb2f2

Contents?: true

Size: 491 Bytes

Versions: 3

Compression:

Stored size: 491 Bytes

Contents

/* Copyright 2008 Theo Hultberg/Iconara */

package <%= base_package %>.models.domain
{	
	import flash.utils.ByteArray;

	/**
	 * Classes implementing this interface represent snapshots of other object's state
	 * at a given time. The snapshot can be serialized either as ByteArray or XML.
	 * 
	 * Currently there is no way to restore a snapshot from a serialized representation.
	 */
	public interface Snapshot {
		
		function get bytes():ByteArray ;
		
		function get xml():XML ;
		
	}

}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
emergent-core-0.1.0 rails_generators/emergent_config/templates/app/flex/application/models/domain/Snapshot.as
emergent-core-0.1.01 rails_generators/emergent_config/templates/app/flex/application/models/domain/Snapshot.as
emergent-core-0.1.02 rails_generators/emergent_config/templates/app/flex/application/models/domain/Snapshot.as