| siliziumbrain.uberobject: | Types | Modinfo | Source |
| TObject | TObject class. |
| Type TObject Abstract | |
| Description | TObject class. |
| Information | Every 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 | |
| Description | Copies the object. |
| Information | A deep (as far as possible) copy of the object is made. returns: A deep copy of the object. |
| Method Equals:Byte(ptoOtherObject:TObject) Abstract | |
| Description | Checks if two objects are equal. |
| Information | Every child class has to implement this method. returns: True if objects this und ptoOtherObject are equal, false otherwise. |
| Method ToString:String() | |
| Description | Returns the Object as a string. |
| Information | Method has to be implemented by each child class. In TObject the method just returns the instance name. returns: The Object as a string. |
| Version | v1.01 |
|---|---|
| Author | M0rgenstern - Siliziumbrain - Kevin Peter Hoffeld |
| License | Public Domain |
| History v1.00 | 12 July 2012 - Final Release |
| History v1.01 | 13 July 2012 - Removed HashCode() because it is not needed. |