Return to Snippet

Revision: 9255
at October 27, 2008 04:18 by jonniespratley


Updated Code
/** *******************************************************************
 * MySnippets
 * Free for use
 *
 * @author  Jonnie Spratley
 * @contact [email protected]
 ******************************************************************* */
 package com.jonniespratley.snippr.vo
{	
	[RemoteClass(alias="vo.SnippetVO")]
	
	/**
 	* VOs are used to create a layer of business objects that can be 
 	* transferred between tiers, instead of using records, results sets, and datasets.
 	*/
	[Bindable]
	public class SnippetVO
	{
		public var snippet_id:int;
		public var snippet_title:String;
		public var snippet_code:String;
		public var snippet_type:String;
		public var snippet_created:String;
		public var snippet_user:String;		
		
		/**
		 * Helper function for building the data. 
		 * @param source
		 * 
		 */		
		public function SnippetVO( snip:Object = null )
		{
			
		}
	}
}

Revision: 9254
at October 27, 2008 01:17 by jonniespratley


Initial Code
/** *******************************************************************
 * MySnippets
 * Free for use
 *
 * @author  Jonnie Spratley
 * @contact [email protected]
 ******************************************************************* */
 package com.jonniespratley.snippr.vo
{	
	[RemoteClass(alias="vo.SnippetVO")]
	
	/**
 	* VOs are used to create a layer of business objects that can be 
 	* transferred between tiers, instead of using records, results sets, and datasets.
 	*/
	[Bindable]
	public class SnippetVO
	{
		public var snippet_id:int;
		public var snippet_title:String;
		public var snippet_code:String;
		public var snippet_type:String;
		public var snippet_created:String;
		public var snippet_user:String;		
		
		/**
		 * Helper function for building the data. 
		 * @param source
		 * 
		 */		
		public function SnippetVO( snip:Object = null )
		{
			
		}
	}
}

Initial URL


Initial Description


Initial Title
Cairngorm Value Object

Initial Tags
textmate, Flex

Initial Language
ActionScript 3