Class
From StudyWiki
Overview
A class is a fundamental concept in object orientated programming
A class is a template for objects. It defines what the object can do (by defining methods) and the information it stores (by defining attributes).
In order to use a class, an object must be created from the class template.
Classes are represented in UML in class diagrams, sequence diagrams, package diagrams
