/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** ******************************************************************* * 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 ) { } } }