Oleh : Cosmas Haryawan -- Pengenalan UML --

Slides:



Advertisements
Presentasi serupa
Catur Iswahyudi + Edhy Sutanta
Advertisements

Bab 7 sequence diagram Catur Iswahyudi.
Interaction Diagram.
SEQUENCE DIAGRAM.
Sequence diagram.
Interaksi Objek.
Diagram Interaksi - Sequen Diagram
Lecture 5 Nonblocking I/O and Multiplexing Erick Pranata © Sekolah Tinggi Teknik Surabaya 1.
SEQUENCE DIAGRAM Kelompok V Ferdy Widjaja ( )
Behavioural Modelling
ARRAY RUBY. PENDAHULUAN Ruby's arrays are untyped and mutable. The elements of an array need not all be of the same class, and they can be changed at.
Game Theory Purdianta, ST., MT..
Struktur Data & Algoritma Suryana Setiawan, Ruli Manurung & Ade Azurat (acknowledgments: Denny) ‏ 1 Fasilkom UI SUR – HMM – AAFasilkom UI - IKI20100/ IKI80110P.
1 DATA STRUCTURE “ STACK” SHINTA P STMIK MDP APRIL 2011.
BLACK BOX TESTING.
Presented By : Group 2. A solution of an equation in two variables of the form. Ax + By = C and Ax + By + C = 0 A and B are not both zero, is an ordered.
Collaboration Diagram
Metode Perancangan Program
Collaboration Diagram State Diagram
IKI 20100: Struktur Data & Algoritma Ruli Manurung & Ade Azurat (acknowledgments: Denny, Suryana Setiawan) 1 Fasilkom UI Ruli Manurung & Ade AzuratFasilkom.
Design View 2.
PERTEMUAN KE-6 UNIFIED MODELLING LANGUAGE (UML) (Part 2)
HAMPIRAN NUMERIK SOLUSI PERSAMAAN NIRLANJAR Pertemuan 3
1 Pertemuan 23 Sequence Diagram Matakuliah: M0086/Analisis dan Perancangan Sistem Informasi Tahun: 2005 Versi: 5.
Bayu Priyambadha, S.Kom.  Classes, which are the "blueprints" for an object and are the actual code that defines the properties and methods.  Objects,
9.3 Geometric Sequences and Series. Objective To find specified terms and the common ratio in a geometric sequence. To find the partial sum of a geometric.
OPERATOR DAN FUNGSI MATEMATIK. Operator  Assignment operator Assignment operator (operator pengerjaan) menggunakan simbol titik dua diikuti oleh tanda.
Keuangan dan Akuntansi Proyek Modul 2: BASIC TOOLS CHRISTIONO UTOMO, Ph.D. Bidang Manajemen Proyek ITS 2011.
Sequence Diagram AND Communication Diagram Pertemuan 0102
Jartel, Sukiswo Sukiswo
Soal Kuis I PSBO.
Pertemuan 23 Sequence Diagram
Notasi Object Oriented System
LATIHAN PSBO Total : 35 PG.
Soal latihan psbo.
Rekayasa Perangkat Lunak Class Diagram
Rinci Kembang Hapsari,S.Si, M.Kom
Relationship Between Classes
Konsep pemrograman LOOP
SEQUENCE DIAGRAM.
Sequence Diagram.
ANALISIS DAN PERANCANGAN BERORIENTASI OBJEK
Sequence Diagram Level Design
Object oriented analyst and design
CLASS DIAGRAM.
Dasar-Dasar Pemrograman
Citra N., S.Si, MT Sisfo - UNIKOM
Collaboration Diagram
OOAD – TI S1 Defri Kurniawan UDINUS
ANALISIS DAN PERANCANGAN BERORIENTASI OBJEK
Collaboration Diagram and Sequence Diagram
Bahasa Pemprograman Dasar Pertemuan 4
SOAL PERTEMUAN 1-6 PSBO 4 SKS
Pemrograman Berorientasi Objek
PEMODEAN SISTEM INFORMASI – PERTEMUAN 5
Pemodelan Sistem Bisnis
Waktu : 2 menit 30 detik/slide
DESIGN VIEW 2 Pertemuan 18 Matakuliah : Konsep object-oriented
SOAL LATIHAN 1 SIMULA di perkenalkan pertama kali pada tahun …..
ANALISIS & DESAIN SISTEM
UML- UNIFIED MODELING LANGUAGE
Pertemuan 4 CLASS DIAGRAM.
SEQUENCE DIAGRAM.
Oleh : Cosmas Haryawan -- Pengenalan UML --
Metode Perancangan Program
ANALISIS & DESAIN BERORIENTASI OBJEK AGUS WAHYUDDIN, ST, M.KOM
SEQUENCE DIAGRAM. Materi : Pendahuluan Tujuan Komponen Simbol Istilah Jenis-jenis SD Contoh Study Kasus.
Sequence Diagram & Collaboration Diagram
THE INFORMATION ABOUT HEALTH INSURANCE IN AUSTRALIA.
Object oriented analyst and design
Transcript presentasi:

Oleh : Cosmas Haryawan -- Pengenalan UML -- Sequence Diagram Oleh : Cosmas Haryawan -- Pengenalan UML --

Sequence Diagram  System Sequence Diagram (SSD) Merupakan suatu diagram interaksi yang memodelkan suatu skenario tunggal yang dijalankan pada sistem Digunakan untuk memperlihatkan interaksi antar obyek dalam perintah yang berurut. Tujuan utama adalah mendefinisikan urutan kejadian yang dapat menghasilkan output yang diinginkan

Komponen Utama Partisipan : obyek atau entitas yang bertindak dalam sequence diagram  Kotak segiempat bernama Message : komunikasi antar obyek partisipan  Garis dengan tanda panah Time : waktu / lifeline  Garis putus-putus vertikal Action Kotak segiempat kecil yang terdapat pada lifeline

Partisipant Pada UML 1 disebut dengan nama Obyek Diletakkan dari kiri ke kanan Setiap Partisipant terhubung dengan lifeline Standar penamaan Instance Name : Class Name

Time / Lifeline Mewakili waktu pada arah vertikal, dimulai dari atas ke bawah Garis putus-putus yang menempel di partisipant lifeline

Action Mewakili sebuah eksekusi operasi dari partisipant Kotak kecil segiempat di lifeline Panjang kotak berbanding lurus dengan durasi activation

Message Message berpindah dari 1 lifeline ke lifeline yang lain Message yan pertama kali muncul di SSD terletak paling atas, kemudian message yang berikutnya berada di bawahnya Terdapat 3 macam : Synchronus Asynchronus Reply / Return

Message… Synchronous Asynchronous Reply/Return Pesan yang dikirim oleh 1 obyek ke obyek lain dan obyek pertama menunggu sampai hasil aksi selesai. Asynchronous Pesan yang dikirim oleh 1 obyek ke obyek lain dan obyek pertama tidak menunggu sampai hasil aksi selesai. Reply/Return Menunjukkan nilai kembali dari obyek ke obyek yang mengirim pesan

Message … the analyst object makes a call to the system object which is an instance of the ReportingSystem class. The analyst object is calling the system object's getAvailableReports method. The system object then calls the getSecurityClearance method with the argument of userId on the secSystem object, which is of the class type SecuritySystem the secSystem object returns userClearance to the system object when the getSecurityClearance method is called. The system object returns availableReports when the getAvailableReports method is called.

Recursive Suatu Obyek yang memanggil dirinya sendiri Digambarkan dengan menambah kotak kecil pada activation Cotoh : system object memberi pesan ke dirinya sendiri : menentukan Laporan apa saja yang ada

Contoh lain

Hapus Partisipant Partisipant bisa menghapus dirinya sendiri atau bisa juga dihapuskan oleh object lain

Petunjuk membuat SD Tentukan scope dari system Identifikasi participating objects Gambar lifelines untuk tiap object Gambar duration tiap object pada lifeline Tambahkan object messages dari atas ke bawah pada diagram (time-based) Check ulang diagram untuk kelengkapannya

Guards Kondisi : suatu syarat agar message dikirim the guard is the text "[pastDueBalance = 0]." By having the guard on this message, the addStudent message will only be sent if the accounts receivable system returns a past due balance of zero

Combined fragments  digunakan untuk mengelompokkan message, tergantung kondisi tertentu  disebut juga Interaction Fragment (Kerangka Interaksi) UML 2 specification mengidentifikasi 11 operator untuk combined fragments.

Format Combined op (operator): applied to the enclosed interaction(s) (some operators require arguments, such as diagrams names, parameters, constants and guards) op [:arguments] diagram name | interaction [ [guard] ] [guard]: a boolean expression the interaction is executed according to the guard’s value interaction: a (fragment of a) sequence diagram (it can contain other frames) if we need to enclose more interactions, we’ll separate them with an outlined line (see next slide) diagram name: needed if we want to refer to a diagram defined elsewhere

Contoh satu set interactions dipisahkan dengan garis putus-putus interaction_i dijalankan jika guard_i bernilai benar op interaction_1 [guard_1] … interaction_n [guard_n]

Operator Combined Fragment Alternatives (alt) choice of behaviors – at most one will execute depends on the value of the guard (“else” guard supported) Option (opt) Special case of alternative  hanya berisi 2 pilihan Break (break) Represents an alternative that is executed instead of the remainder of the fragment (like a break in a loop) Parallel (par) Concurrent (interleaved) sub-scenarios, fragmen berjalan secara pararel Negative (neg) Identifies sequences that must not occur (interaksi yang salah)

Operator… Critical Region (region) Loop (loop) Fragmen tidak dapat disela dengan kejadian lain pada participating lifeline Loop (loop) Optional guard: [<min>, <max>, <Boolean-expression>] Tanpa Guard berarti tidak ada batas

Alternative

Option if a student's past due balance equals zero, then the addStudent, getCostOfClass, and chargeForClass messages are sent. If the student's past due balance does not equal zero, then the sequence skips sending any of the messages in the option combination fragment.

Loop

Ref

Ref…

Break almost identical in every way to the option combined fragment, with two exceptions. a break's frame has a namebox with the text "break" instead of "option." when a break combined fragment's message is to be executed, the enclosing interaction's remainder messages will not be executed because the sequence breaks out of the enclosing interaction Breaks are most commonly used to model exception handling

Pararel

Critical Region

Kapan perlu SD Saat ingin mengetahui perilaku beberapa obyek pada use case tunggal Bagus dalam menunjukkan kolaborasi diantara obyek namun tidak bagus dalam memberikan definisi yang pasti tentang perilaku tersebut