Posts

Showing posts with the label UML

Short Tutorials On UML and UML Class Diagram

Image
UML Stands For Unified Modeling Language. Class Diagram:: The purpose of the class diagram is to show the types being modeled within the system and there relationship. In an object oriented application, classes have attributes (member variables), operations (member functions) and relation-ships with other classes. The UML class diagram can depict all these things quite easily. For Example, for the following public class Customer, Class Customer{ public String name; public String address; public String creditRating(){ } } Class Diagram is as follows, Figure 1: Class Diagram The UML representation of a class is a rectangle containing ...