Skip to main content

Unified Modeling Language- (UML)

Brief Background
UML is a language for specifying,visualizing ,documenting and constructing the artifacts of software systems,as well as for business modeling and other non-software systems.
UML has been developed by Grady  Booch, James Rumbaugh and Ivar Jacobson.

Goals of UML are :

  1. To model systems using Object oriented concepts.
  2. To establish an explicit coupling to conceptual as well as executable artifacts
  3. To address the issues of scale inherent in complex , mission critical systems.
  4. To create a modeling language that can be used by humans as well as machines. 

Understanding the thirteen diagrams of UML 2.x is an important part of understanding OO development. Although there is far more to modeling than just the UML the reality is the UML defines the standard modeling artifacts when it comes to object technology.
There are three classifications of UML diagrams:
  • Behavior diagrams. A type of diagram that depicts behavioral features of a system or business process. This includes activity, state machine, and use case diagrams as well as the four interaction diagrams.
  • Interaction diagrams. A subset of behavior diagrams which emphasize object interactions. This includes communication, interaction overview, sequence, and timing diagrams.
  • Structure diagrams. A type of diagram that depicts the elements of a specification that are irrespective of time. This includes class, composite structure, component, deployment, object, and package diagrams.
The Diagrams of UML 2.




Depicts high-level business processes, including data flow, or to model the logic of complex logic within a system. 




Shows a collection of static model elements such as classes and types, their contents, and their relationships.



Shows instances of classes, their interrelationships, and the message flow between them. Communication diagrams typically focus on the structural organization of objects that send and receive messages. Formerly called a Collaboration Diagram.



Depicts the components that compose an application, system, or enterprise. The components, their interrelationships, interactions, and their public interfaces are depicted.




Depicts the internal structure of a classifier (such as a class, component, or use case), including the interaction points of the classifier to other parts of the system.




Shows the execution architecture of systems. This includes nodes, either hardware or software execution environments, as well as the middleware connecting them.



A variant of an activity diagram which overviews the control flow within a system or business process. Each node/activity within the diagram can represent another interaction diagram.




Depicts objects and their relationships at a point in time, typically a special case of either a class diagram or a communication diagram.




Shows how model elements are organized into packages as well as the dependencies between packages.




Models the sequential logic, in effect the time ordering of messages between classifiers.




Describes the states an object or interaction may be in, as well as the transitions between states. Formerly referred to as a state diagram, state chart diagram, or a state-transition diagram.




Depicts the change in state or condition of a classifier instance or role over time. Typically used to show the change in state of an object over time in response to external events.




Shows use cases, actors, and their interrelationships. 


Comments

  1. i want to define the any four UML diagrams in my assaignment, i am a student from lithuania( european union), how ever which software can i use to define.?? rational rose software is not working here so please suggest me some softwares and some videos links..
    thanks and regards.

    ReplyDelete
    Replies
    1. https://www.smartdraw.com/uml-diagram/uml-diagram-software.htm
      StarUML
      https://www.visual-paradigm.com/solution/freeumldesigntool/
      See youtube for videos

      Delete
  2. This comment has been removed by the author.

    ReplyDelete

Post a Comment

Popular posts from this blog

Javascript to validate Email Expression

Using  regular expressions  is probably the best way. Here's an example ( live demo ): function validateEmail ( email ) { var re = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/ i ; return re . test ( email ); } But keep in mind that one should not rely only upon JavaScript validation. JavaScript can easily be disabled. This should be validated on the server side as well.

Local Area Networks LAN

Why use a LAN? The two basic reasons for developing a LAN are information sharing and resource sharing. Information sharing refers to business needs that require users to access the same data files ,exchange emails or search the internet for information. Resource sharing refers to one computer sharing a hardware device (for e.g a printer) or software package with other computers on the network. The main benefit of resource sharing is cost savings, while the main benefit  of information sharing is improved decision making. image courtesy Cray Networks Dedicated Server versus Peer-to-Peer Networks A dedicated server LAN has one computer that acts as the network server. It can connect with almost any other network,handle very large databases and use sophisticated LAN software. Moreover,high -end dedicated server LANs can be interconnected easily to form enterprise wide networks or in some cases replace the host mainframe central computer. Four common types of dedi...