

{"id":866,"date":"2014-09-05T04:16:26","date_gmt":"2014-09-05T04:16:26","guid":{"rendered":"http:\/\/www.w3computing.com\/systemsanalysis\/?p=866"},"modified":"2021-05-18T19:42:28","modified_gmt":"2021-05-18T19:42:28","slug":"enhancing-sequence-diagrams","status":"publish","type":"post","link":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/","title":{"rendered":"Enhancing Sequence Diagrams"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes introduced in the last section. Sequence diagrams in particular can be overbearing if an analyst doesn\u2019t have a systematic approach to drawing them. The following steps are a useful approach to enhancing a sequence diagram:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Include the actor from the use case diagram in the enhanced sequence diagram. This will be a stick figure from the use case diagram. There may be an additional actor on the right side of the diagram, such as a credit card company or bank.<\/li><li>Define one or more interface classes for each actor. Each actor should have his or her own interface class.<\/li><li>Create prototype Web pages for all human interfaces.<\/li><li>Ensure each use case has one control class, although more may be created during the detailed design. Look for that control class and include it in the sequence diagram.<\/li><li>Examine the use case to see what entity classes are present. Include these on the diagram.<\/li><li>Realize that the sequence diagram may be modified again when doing detailed design, such as creating additional Web pages or control classes (one for each Web form submitted).<\/li><li>To obtain a greater degree of reuse, consider moving methods from a control class to an entity class.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">A Class Example for the Web<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Classes may also be represented using special symbols for entity, boundary (or interface), and control classes. These are called stereotypes, an extension to UML, which are special symbols that may be used during analysis, but are often used when performing object-oriented design. They allow the analyst freedom to play with the design to optimize reusability.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The different types of classes are often used when working in the systems design phase. Figure below is an example illustrating a sequence diagram representing a student viewing his or her personal and course information. In the diagram, <strong>:View Student User Interface<\/strong> is an example of an interface class; <strong>:Student<\/strong>, <strong>:Section<\/strong>, and <strong>:Course<\/strong> are examples of entity classes; and <strong>:View Student Interface Controller<\/strong> and <strong>:Calculate Grade Point Average<\/strong> are control classes.<\/p>\n\n\n\n<figure class=\"wp-block-image alignnone\"><a href=\"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15.jpg\" rel=\"lightbox[866]\"><img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"300\" src=\"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg\" alt=\"A sequence diagram for using two Web pages: one for student information, one for course information.\" class=\"wp-image-798\" srcset=\"https:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg 297w, https:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15.jpg 909w\" sizes=\"auto, (max-width: 297px) 100vw, 297px\" \/><\/a><figcaption>A sequence diagram for using two Web pages: one for student information, one for course information.<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The student is shown on the left as an actor, and he or she provides a <strong>userLogon<\/strong> to the <strong>:View Student User Interface<\/strong> class. This is a Web form that obtains the student\u2019s user ID and password. When the student clicks the <strong>Submit<\/strong> button, the Web form is passed to a <strong>:View Student Interface Controller<\/strong>. This class is responsible for the coordination of sending messages and receiving returned information from all the other classes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>:View Student Interface Controller<\/strong> sends a <strong>getStudent( )<\/strong> message to the <strong>:Student<\/strong> class, which reads a database table and proceeds to return the <strong>studentData<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>studentWebPage<\/strong> is returned to the <strong>:View Student User Interface<\/strong>, which displays the information in the Web browser. At the bottom of the page is a <strong>nextButton<\/strong> that the student clicks to view courses. When the user clicks this button, it sends a Web form to the <strong>:View Student Interface Controller<\/strong>. This form contains the<strong> studentNumber()<\/strong>, sent along with the <strong>studentWebPage<\/strong>, and is used to send a message to the <strong>:Section<\/strong> class to obtain the section grade. If the <strong>studentNumber()<\/strong> was not automatically sent, it would mean that the student would have to enter his or her <strong>studentNumber()<\/strong> again, which would not be a satisfactory user interface because it involves redundant keying. Notice that the <strong>:Student<\/strong> class is not involved, and that the focus of control (the vertical bar that is connected to the <strong>:Student<\/strong> class) ends before the second set of activities (the horizontal arrows pointing to the right) begins.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>:View Student Interface Controller<\/strong> class sends a <strong>getSection()<\/strong> message to the :Section class, which returns a <strong>sectionGrade<\/strong>. The <strong>:Section<\/strong> class also sends a <strong>calculateGPA()<\/strong> message to the <strong>:Calculate Grade Point Average<\/strong> class, which sends a message back to the :Course class. The :Course class returns the credits, which enables the <strong>:Calculate Grade Point Average<\/strong> class to determine the GPA and return it to the <strong>:View Student Interface Controller<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>:View Student Interface Controller<\/strong> would repeat sending messages to the <strong>:Section<\/strong> class until all sections for the student have been included. At this time, the <strong>:View Student Interface Controller<\/strong> would send the <strong>courseWebPage<\/strong> to the <strong>:View Student User Interface<\/strong> class, which would display the information in the browser.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Using the user interface, control, and entity classes also allows the analyst to explore and play with the design. The design mentioned previously would display all the student personal information on one page and the course information on a second page. The analyst may modify the design so that the student personal information and the course information appear on one Web page. These two possible scenarios would be reviewed with users to determine the best option. One of the difficulties for the analyst is to determine how to include the <strong>studentNumber<\/strong> after clicking the <strong>Next<\/strong> button, because the <strong>:Student<\/strong> class is no longer available. There are three ways to store and retransmit data from a Web page:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Include the information in the URL displaying in the address or location area of the browser. In this case, the location line might read something like the following:\n<ul>\n<li>http:\/\/www.cpu.edu\/student\/studentinq.html?studentNumber\u000312345<\/li>\n<li>Everything after the question mark is data that may be used by the class methods. This means of storing data is easy to implement and is often used in search engines.<\/li>\n<li>There are several drawbacks to using this method, and the analyst must use due caution. The first concern is privacy\u2014anyone can read the Web address. If the application involves medical information, credit card numbers, and so on, this is not a good choice. Most browsers will also display previous Web address data in subsequent sessions if the user enters the first few characters, and the information may be compromised, leading to identity theft. A second disadvantage is that the data are usually lost after the user closes the browser.<\/li>\n<\/ul>\n<\/li><li>Store the information in a cookie, a small file stored on the client (browser) computer. Cookies are the only way to store data that have persistence, existing beyond the current browser session. This enables the Web page to display a message such as \u201cWelcome back, Robin. If you are not Robin, click here.\u201d Cookies usually store primary key account numbers, but not credit card numbers or other private information. Cookies are limited to 20 per domain (such as www.cpu.edu) and each cookie must be 4,000 characters or less.\n<ul>\n<li>The analyst must work with other business units to determine who needs to use cookies, and there must be some central control over the names used in the cookies. If the organization needs to have more than 20 cookies, a common solution is to create different domain names used by the organization, such as support.cpu.edu or instruction.cpu.edu.<\/li>\n<\/ul>\n<\/li><li>Use hidden Web form fields. These fields usually contain data that are sent by the server, are invisible, and do not occupy any space on the Web page. In the view student information example, the <strong>:View Student Interface Controller<\/strong> class added a hidden field containing the <strong>studentNumber<\/strong> to the <strong>studentWebPage<\/strong> form along with the <strong>nextButton<\/strong>. When the student clicks the <strong>nextButton<\/strong>, the <strong>studentNumber<\/strong> is sent to the server and the <strong>:View Student Interface Controller<\/strong> knows which student to obtain course and grade information for. The data in hidden forms is not saved from one browser session to another, so privacy is maintained.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Presentation, Business, and Persistence Layers in Sequence Diagrams<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the previous example, we showed all of the classes in the same diagram. When it comes to writing code for systems, it has been useful to look at sequence diagrams as having three distinct layers as follows:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>The presentation layer, which represents what the user sees. This layer contains the interface or boundary classes.<\/li><li>The business layer, which contains the unique rules for this application. This layer contains the control classes.<\/li><li>The persistence or data access layer, which describes obtaining and storing data. This layer contains the entity classes.<\/li><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Ideally program code would be written separately for each of these layers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With the introduction of Ajax, the lines became blurred. Ajax, an acronym for asynchronous JavaScript and XML, is a collection of techniques that allows Web applications to retrieve information from the server without altering the display of the current page. This turns out to be an advantage because the entire Web page does not need to be reloaded when it gets additional data from the server.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before Ajax was created a user visiting aWeb site would answer some questions by entering data on aWeb-based form, then wait until a new page loaded. This was necessary because the code to validate, get the data, then answer the user resided on the server.With the advent of Ajax, the Web page is updated rapidly because much of the validation and other control logic is now included in the browser JavaScript code or on the client side. This means that business rules are included in both the boundary and the control class, so it might not be possible to have three distinct layers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes introduced in the last section. Sequence diagrams in particular can be overbearing if an analyst doesn\u2019t have a systematic approach to drawing them. The following steps [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[13],"tags":[],"class_list":["post-866","post","type-post","status-publish","format-standard","category-object-oriented-sad-using-uml","entry","has-post-thumbnail"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Enhancing Sequence Diagrams<\/title>\n<meta name=\"description\" content=\"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enhancing Sequence Diagrams\" \/>\n<meta property=\"og:description\" content=\"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/w3computing\" \/>\n<meta property=\"article:published_time\" content=\"2014-09-05T04:16:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-18T19:42:28+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg\" \/>\n<meta name=\"author\" content=\"w3computing.com\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"w3computing.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/\"},\"author\":{\"name\":\"w3computing.com\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/#\\\/schema\\\/person\\\/8395166dc0b94b38a3aeb88dafbd63ce\"},\"headline\":\"Enhancing Sequence Diagrams\",\"datePublished\":\"2014-09-05T04:16:26+00:00\",\"dateModified\":\"2021-05-18T19:42:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/\"},\"wordCount\":1551,\"image\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/10.15-297x300.jpg\",\"articleSection\":[\"Object-Oriented Systems Analysis and Design Using UML\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/\",\"url\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/\",\"name\":\"Enhancing Sequence Diagrams\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/10.15-297x300.jpg\",\"datePublished\":\"2014-09-05T04:16:26+00:00\",\"dateModified\":\"2021-05-18T19:42:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/#\\\/schema\\\/person\\\/8395166dc0b94b38a3aeb88dafbd63ce\"},\"description\":\"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/10.15.jpg\",\"contentUrl\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/10.15.jpg\",\"width\":909,\"height\":916,\"caption\":\"A sequence diagram for using two Web pages: one for student information, one for course information.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/enhancing-sequence-diagrams\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Systems Analysis\",\"item\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Object-Oriented Systems Analysis and Design Using UML\",\"item\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/object-oriented-sad-using-uml\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enhancing Sequence Diagrams\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/#website\",\"url\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.w3computing.com\\\/systemsanalysis\\\/#\\\/schema\\\/person\\\/8395166dc0b94b38a3aeb88dafbd63ce\",\"name\":\"w3computing.com\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enhancing Sequence Diagrams","description":"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/","og_locale":"en_US","og_type":"article","og_title":"Enhancing Sequence Diagrams","og_description":"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes","og_url":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/","article_publisher":"https:\/\/www.facebook.com\/w3computing","article_published_time":"2014-09-05T04:16:26+00:00","article_modified_time":"2021-05-18T19:42:28+00:00","og_image":[{"url":"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg","type":"","width":"","height":""}],"author":"w3computing.com","twitter_misc":{"Written by":"w3computing.com","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#article","isPartOf":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/"},"author":{"name":"w3computing.com","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/#\/schema\/person\/8395166dc0b94b38a3aeb88dafbd63ce"},"headline":"Enhancing Sequence Diagrams","datePublished":"2014-09-05T04:16:26+00:00","dateModified":"2021-05-18T19:42:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/"},"wordCount":1551,"image":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#primaryimage"},"thumbnailUrl":"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg","articleSection":["Object-Oriented Systems Analysis and Design Using UML"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/","url":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/","name":"Enhancing Sequence Diagrams","isPartOf":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#primaryimage"},"image":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#primaryimage"},"thumbnailUrl":"http:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15-297x300.jpg","datePublished":"2014-09-05T04:16:26+00:00","dateModified":"2021-05-18T19:42:28+00:00","author":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/#\/schema\/person\/8395166dc0b94b38a3aeb88dafbd63ce"},"description":"Once the class diagram is drawn, it may be desirable to go back to the sequence diagram and include special symbols for each of the different types of classes","breadcrumb":{"@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#primaryimage","url":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15.jpg","contentUrl":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-content\/uploads\/2014\/09\/10.15.jpg","width":909,"height":916,"caption":"A sequence diagram for using two Web pages: one for student information, one for course information."},{"@type":"BreadcrumbList","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/enhancing-sequence-diagrams\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Systems Analysis","item":"https:\/\/www.w3computing.com\/systemsanalysis\/"},{"@type":"ListItem","position":2,"name":"Object-Oriented Systems Analysis and Design Using UML","item":"https:\/\/www.w3computing.com\/systemsanalysis\/object-oriented-sad-using-uml\/"},{"@type":"ListItem","position":3,"name":"Enhancing Sequence Diagrams"}]},{"@type":"WebSite","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/#website","url":"https:\/\/www.w3computing.com\/systemsanalysis\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.w3computing.com\/systemsanalysis\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.w3computing.com\/systemsanalysis\/#\/schema\/person\/8395166dc0b94b38a3aeb88dafbd63ce","name":"w3computing.com"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p4NNeA-dY","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/posts\/866","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/comments?post=866"}],"version-history":[{"count":0,"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/posts\/866\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/media?parent=866"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/categories?post=866"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.w3computing.com\/systemsanalysis\/wp-json\/wp\/v2\/tags?post=866"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}