Packagecom.cyntaxic.cynmvc.model.vos
Classpublic class VersionVO
InheritanceVersionVO Inheritance CyntaxicVO Inheritance Object

The VersionVO class is a value object used to contain information framework versions.



Public Properties
 PropertyDefined By
  description : String
The description of the release.
VersionVO
  number : String
The version number as a string
VersionVO
Public Methods
 MethodDefined By
  
VersionVO(number:String, description:String)
Creates a new VersionVO object.
VersionVO
 Inherited
describe(compact:Boolean = true):String
Returns a valid JSON string describing the object.
CyntaxicVO
 Inherited
getProp(prop:String):Object
Gets a property value by its property name.
CyntaxicVO
Property Detail
descriptionproperty
description:String

The description of the release.


Implementation
    public function get description():String
    public function set description(value:String):void
numberproperty 
number:String

The version number as a string


Implementation
    public function get number():String
    public function set number(value:String):void
Constructor Detail
VersionVO()Constructor
public function VersionVO(number:String, description:String)

Creates a new VersionVO object.

Parameters
number:String — The version number as a string
 
description:String — The description of the release.