Class TObject

java.lang.Object
  |
  +--TObject
Direct Known Subclasses:
OPane, System, TDlg, TNet, TString, TTimer, TVCpn

public class TObject
extends java.lang.Object

Type Object: Class TObject is the root of the class hierarchy. Every class has TObject as a superclass. All objects implement the methods of this class.

Since:
First release

Constructor Summary
TObject()
          Instanciates a new Type Object.
 
Method Summary
 TObject clone()
          Returns a clones the object.
 void Destroy()
          Destroys the object
 boolean equals(TObject object)
          Compares the object with another.
 java.lang.String toString()
          Returns a string representation of the object.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TObject

public TObject()
Instanciates a new Type Object.

Since:
First release
Method Detail

Destroy

public void Destroy()
Destroys the object

Since:
First release

clone

public TObject clone()
Returns a clones the object.

Overrides:
clone in class java.lang.Object
Returns:
object: A clone of the object.
Since:
Release 2

equals

public boolean equals(TObject object)
Compares the object with another.

Parameters:
object - The object to compare.
Returns:
equal: True if equal.
Since:
Release 2

toString

public java.lang.String toString()
Returns a string representation of the object.

Overrides:
toString in class java.lang.Object
Returns:
string: A string representation of the object.
Since:
Release 2