Cairngorm值对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cairngorm值对象相关的知识,希望对你有一定的参考价值。

  1. /** *******************************************************************
  2.  * MySnippets
  3.  * Free for use
  4.  *
  5.  * @author Jonnie Spratley
  6.  * @contact [email protected]
  7.  ******************************************************************* */
  8. package com.jonniespratley.snippr.vo
  9. {
  10. [RemoteClass(alias="vo.SnippetVO")]
  11.  
  12. /**
  13.   * VOs are used to create a layer of business objects that can be
  14.   * transferred between tiers, instead of using records, results sets, and datasets.
  15.   */
  16. [Bindable]
  17. public class SnippetVO
  18. {
  19. public var snippet_id:int;
  20. public var snippet_title:String;
  21. public var snippet_code:String;
  22. public var snippet_type:String;
  23. public var snippet_created:String;
  24. public var snippet_user:String;
  25.  
  26. /**
  27. * Helper function for building the data.
  28. * @param source
  29. *
  30. */
  31. public function SnippetVO( snip:Object = null )
  32. {
  33.  
  34. }
  35. }
  36. }

以上是关于Cairngorm值对象的主要内容,如果未能解决你的问题,请参考以下文章

Flex Cairngorm框架知识整理

关于Flex Cairngorm中command层与View层的通信及耦合度高的问题的解决

如何选择一个Flex框架

面向对象设计-精通随笔-值对象和引用对象

值对象模式其他模式

ajax返回为对象,怎样得到对象的属性值