All Packages Class Hierarchy This Package Previous Next Index
Class dlib.BaseObject
java.lang.Object
|
+----dlib.BaseObject
- public class BaseObject
- extends Object
Provides a base object, just above "Object" which all the client's other
classes can be based on. Why not just use "Object"? You can't supercede
or augment type "Object" directly.
-
BaseObject()
-
-
Copy_Slots(BaseObject)
- A dummy implementation of Copy_Slots as a base for our Coneable
-
getName()
- implement the getName method for all objects based on BaseObject,
so other methods can use getName without worrying if the target implements
the method.
-
toString()
- make all objects print with their classname, in a distinctive form,
similar to #
BaseObject
public BaseObject()
getName
public String getName()
- implement the getName method for all objects based on BaseObject,
so other methods can use getName without worrying if the target implements
the method. It's good to give objects real names, though.
- See Also:
- NamedObject
Copy_Slots
public BaseObject Copy_Slots(BaseObject to)
- A dummy implementation of Copy_Slots as a base for our Coneable
toString
public String toString()
- make all objects print with their classname, in a distinctive form,
similar to #
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index