Class Class
Defined in: base.js.
Constructor Attributes | Constructor Name and Description |
---|---|
Class()
This is not a class - the functions documented here exist on all classes
created using foodev.Class.
|
Method Attributes | Method Name and Description |
---|---|
Returns the (local) class name.
|
|
Returns the full class name.
|
|
Returns the owning package of the class.
|
Class Detail
Class()
This is not a class - the functions documented here exist on all classes
created using foodev.Class.
Method Detail
{String}
getClassName()
Returns the (local) class name.
For full class name see Class#getFullClassName
For full class name see Class#getFullClassName
This method exist on all classes created using the foodev.Class method.
var point = new foodev.bar.Point(); point.getClassName(); // 'Point'
- Returns:
- {String} The local class name.
{String}
getFullClassName()
Returns the full class name.
This method exist on all classes created using the foodev.Class method.
var point = new foodev.bar.Point(); point.getFullClassName(); // 'foodev.bar.Point'
- Returns:
- {String} The full class name.
{Package}
getPackage()
Returns the owning package of the class.
This method exist on all classes created using the foodev.Class method.
- Returns:
- {Package} The owning package object.