| Package | com.cyntaxic.cynmvc.model.vos |
| Class | public class VersionVO |
| Inheritance | VersionVO CyntaxicVO Object |
VersionVO class is a value object used to contain information framework versions.
| Property | Defined By | ||
|---|---|---|---|
| description : String
The description of the release. | VersionVO | ||
| number : String
The version number as a string
| VersionVO | ||
| Method | Defined By | ||
|---|---|---|---|
VersionVO(number:String, description:String)
Creates a new VersionVO object. | VersionVO | ||
![]() | describe(compact:Boolean = true):String
Returns a valid JSON string describing the object. | CyntaxicVO | |
![]() | getProp(prop:String):Object
Gets a property value by its property name. | CyntaxicVO | |
| description | property |
description:StringThe description of the release.
public function get description():String public function set description(value:String):void| number | property |
number:StringThe version number as a string
public function get number():String public function set number(value:String):void| VersionVO | () | Constructor |
public function VersionVO(number:String, description:String)
Creates a new VersionVO object.
number:String — The version number as a string
| |
description:String — The description of the release.
|