Cairngorm值对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cairngorm值对象相关的知识,希望对你有一定的参考价值。
/** ******************************************************************* * 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 ) { } } }
以上是关于Cairngorm值对象的主要内容,如果未能解决你的问题,请参考以下文章