Property | Defined by | ||
---|---|---|---|
id : String [read-only]
Returns the unique id of this
Job . | Job | ||
longDescription : String [read-only]
Returns the long description.
| Job | ||
owner : String [read-only]
Returns the owner, which is the extension id.
| Job | ||
shortDescription : String [read-only]
Returns the short description.
| Job | ||
title : String [read-only]
Returns the title.
| Job |
Method | Defined by | ||
---|---|---|---|
Job(title:String, shortDescription:String = null, longDescription:String = null)
Constructs a new
Job . | Job |
id | property |
id:String
[read-only]
Returns the unique id of this Job
.
public function get id():String
longDescription | property |
longDescription:String
[read-only]Returns the long description.
Implementation public function get longDescription():String
owner | property |
owner:String
[read-only]Returns the owner, which is the extension id.
Implementation public function get owner():String
shortDescription | property |
shortDescription:String
[read-only]Returns the short description.
Implementation public function get shortDescription():String
title | property |
title:String
[read-only]Returns the title.
Implementation public function get title():String
Job | () | constructor |
public function Job(title:String, shortDescription:String = null, longDescription:String = null)
Constructs a new Job
.
title:String — The title.
|
|
shortDescription:String (default = null ) — The short description; defaults to null .
|
|
longDescription:String (default = null ) — The long description; defaults to null .
|