MDrivenStart Class

You can change what Package a class belongs to. Need to add a package?

It is good practice to write an explanation of the background information for this class in the code comment. It will help you remember the purpose for which you created it.

The class is often given a default string representation that can be any expression - typically one of its own attributes of type string. Need to add an attribute?

The default string representation is used when a UI tries to display an object of your class without any information about what attributes to show.

A class that acts as a superclass for another class is often marked as abstract to indicate that it should not be used directly; this will prohibit the creation of objects. You can read more on inheritance in uml here.

Classes most often have associations to other classes.

Objects of classes are normally persistent (they are saved and shared between sessions) but can be made transient (they are short-lived in the memory of the current session).

Back One Back to Start Chat Updated!

This page was edited more than 8 months ago on 08/16/2023. What links here