siliziumbrain.uberobject: Types Modinfo Source  

Motherclass.

This module provides a mother class (#TObject) from which i can inherit everything.

Types Summary

TObject TObject class.

Types

Type TObject Abstract
DescriptionTObject class.
InformationEvery of my future types will inherit from this class.
Methods Summary
Copy Copies the object.
Equals Checks if two objects are equal.
ToString Returns the Object as a string.
Method Copy:TObject() Abstract
DescriptionCopies the object.
InformationA deep (as far as possible) copy of the object is made.
returns: A deep copy of the object.
Method Equals:Byte(ptoOtherObject:TObject) Abstract
DescriptionChecks if two objects are equal.
InformationEvery child class has to implement this method.
returns: True if objects this und ptoOtherObject are equal, false otherwise.
Method ToString:String()
DescriptionReturns the Object as a string.
InformationMethod has to be implemented by each child class.
In TObject the method just returns the instance name.
returns: The Object as a string.

Module Information

Versionv1.01
AuthorM0rgenstern - Siliziumbrain - Kevin Peter Hoffeld
LicensePublic Domain
History v1.0012 July 2012 - Final Release
History v1.0113 July 2012 - Removed HashCode() because it is not needed.