




已阅读5页,还剩19页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
ModellingDynamicsofObjects BuildingStateTransitionDiagrams DrLilySun2011 2012 LearningObjectives ToappreciatetheroleofmodellingdynamicsofanobjectinrelationtothesystemsdesignToestablishviewsonstablestatesofanobjectinitslifetimeduringwhichthestateschangedrivenbytheeventsTomodelsuchstateschangeinStateTransitionDiagramsToapplytheprinciplesandstyleguideofSateTransitionDiagramswhiledesignanddocumentthestatechangewhichinturnwillguidetheconstructionofcoding ModellingDynamicBehaviour ActivityDiagramshigh levelactivitiesaccomplishedbyhumanagentsand ormachineagentsinagivenbusinessdomainInteractionDiagrams e g SequenceDiagrams technicalfunctionsperformedbysoftwaresystemsthesetechnicalfunctionsarerealisedbytheinteraction messagepassing betweentheinvolvingobjectsinlogicalsequencesStateTransitionDiagramsAneffecttoanobjectcausedbyactionstriggeredbyeventstosatisfycertainconditions ModellingtheBehaviourofanObject Softwaresystemsareevent drivencontinuouslywaitfortheoccurrenceofsomeexternalorinternalevent suchasamouseclickabuttonpressatimetickanarrivalofadatapacketposttoamanipulationonobjects aresultantvalue i e effect reflectsastatusoftheobjectatthepresentmomentStatesofanobjectanobjectmayholdanumberofstateswhichrepresentsthecorrespondingsituationoftheobjectastatecanbecausedbyoneeventorthedifferenteventsundercertainconditions StateTransitionDiagrams Behaviouralstatemachinetospecifytheseriousstatesthatanobjectgoesthroughduringitslifetimeinresponsetoeventsdifferenteventstriggertheobjecttoholdcorrespondingstates i e resultsofmanipulations TomodelstatesofanobjectanditsreactionstomessagesorothereventsduringitslifetimeToestablishboundariesoftheexistenceofanobject startandfinishstate Toanalyseevents actions andguardconditionsassociatedwiththetransitionbetweenthestatesoftheobject ConceptsforStateTransitionDiagrams Stateaconditionorasituationduringthelifeofanobjectduringitslife theobjectsatisfiessomecondition performssomeactionorwaitsforsomeevent message InitialStaterepresentthepointatwhichanobjectbeginstoexistFinalStaterepresentthepointfromwhichanobjectbeginstoceasealltheactions aState ConceptsforStateTransitionDiagrams cont Eventisanoccurrencethatisrelevanttotheobjectandtriggersactionsintheobjectexternalevent knownasasystemevent causedbysomething e g actor outsidethesystemboundaryinternalevent causedbysomethinginsidethesystemboundarywhenanoperationisinvokedviamessagethatwassentfromanotherinternalobjecttemporalevent causedbytheoccurrenceofaspecificdateandtimeorpassageoftime anEvent ConceptsforStateTransitionDiagrams cont Actionisanexecutableatomiccomputationoperationcallstheconstructionordestructionofanotherobject orthesendingofasignaltoanobjectTypesofActionentryeffectexecuteduponentrytoastate nomatterwhichtransitionledyouinexiteffectexecuteduponexitfromastate nomatterwhichtransitionledyouawaydo activityeffectisanongoingactivitycarriedoutbytheobjectthisactivitywillcontinuetillitisinterruptedbyanevent anAction ConceptsforStateTransitionDiagrams cont Transitionisarelationshipbetweentwostatesindicatingthatanobjectinthefirststatewillperformcertainactionsandenterthesecondstatewhenaspecialeventoccursandspecificconditionsaresatisfiedsourcestateinitiateantransitionwhichtriggeraneventtargetstatethestatethatisactiveafterthecompletionofthetransitioneventtriggertheeventwhoserecognitionbytheobjectinthesourcestatemakesthetransitioneligibletofire providingitsguardconditionissatisfiedguardconditionaBooleanexpression true thetransitioniseligibletofire false donotfire anEvent ConceptsforStateTransitionDiagrams cont Framethecontext scope withinwhichthestatebehaviourismodelledIsnormallyfocusedonONEobject context GuidelinesforCreationofStateTransitionDiagrams Setacontext i e selectoneobject Identifytheinitial final andstablestatesoftheobjectwithinthecontextDeterminetheorderinwhichtheobjectwillpassthroughthestablestatesIdentifytheevents actions andguardconditionsassociatedwiththetransitionsValidatethestatebehaviourreferringtotheclassmodelandtheusecasemodel IllustrationofaStateTransitionDiagram Order ConcurrentStatesintheirTransitions ArticulatingConcerningObjects Order OrderItem Item Customer 11 0 1 0 1 places describes order id stringorderDate datecustomer id stringorderStatus string updateStatus e event oI id stringitem id stringquantity intprice currency item id stringitemName stringdescription stringunitPrice currency AnalysisofEventsandStatesforObjects Order persistent orderStatus string updateStatus e event Monitoringthisstatechange executingtheactionstochangethepreviousstateintoaresultantstate Stage1SelectaclassIdentifyaninterestofstatechange Order persistent add remove update find updateStatus e event order id stringorderDate datecustomer id stringorderStatus string AnalysisofEventsandStatesforObjects cont Stage2Identifythepossibleevents Order persistent orderStatus string updateStatus e event trigger event changethepreviousstate processthecurrentevent AnalysisofEventsandStatesforObjects cont Stage3Identifythestablestatesastheresultsoftheeventoccurrences Order persistent orderStatus string updateStatus e event trigger byevent changethepreviousstate processthecurrentevent Alistofstablestates receivedapprovedpendingconsolidateddeliveredinvoicedpaidcancelled TheStateTransitionDiagram Example1 theflatstatemachine paid received invoiced consolidated approved theorderbeencreatedbythecustomer srequest theorderbeensentforapproval proceedtheorder thecustomerbeenrequestedforfurtherinformation Order pending thecustomerprovedfurtherinformation cancelled thecustomerwithdrawn theorderterminated delivered theinvoicebeencreated theorderbeenconsolidated theorderbeendispatched thecustomerpaid thepaymentconfirmed thecustomerreceivedtheorder theorderclosed PseudoCodesforStateTransitions typedeforder s start s received s approved s pending s consolidated s delivered s invoiced s cancelled s paid AND delivered s closed STATES updateStatus e event casee ordercreated orderStatus received endcase casee sentforapproval ifitisapprovedthenorderStatus approved ifthecustomerisrequiredtoprovidefurtherinformationthenorderStatus pending endcase PseudoCodesforStateTransitions casee proceedorder docreateInvoice messagetoPaymentobject docreateConsolidation messagetoShippingobject if theinvoiceiscreate AND theorderisconsolidated thenorderStatus invoiced AND consolidated endcase casee customerwithdrawn orderStatus cancelled iftheorderhasnotbeenproceededthentheorderterminatedelsesendmessagestotherelevantobjectsformodificationsendcase PseudoCodesforStateTransitions cont casee thecustomerpaid orderStat
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 【正版授权】 ISO/TR 22625:2025 EN Intelligent transport systems - Mobility integration - Physical and functional view
- 棉花纤维质量分析工艺考核试卷及答案
- 浆料复卷工艺考核试卷及答案
- 芳烃抽提装置操作工突发故障应对考核试卷及答案
- 聚氨酯弹性层施工规范考核试卷及答案
- 信息技术考试试题及答案
- 信息技术发展试题及答案
- 中医诊断学基础知识点试题测试卷
- 银行债券笔试题库及答案
- DB33-T 1261-2021 全装修住宅室内装修设计标准 附条文说明
- 人力资源知识竞赛题库及答案
- 地铁轨道安全培训报道课件
- 2025年征信题库及答案
- 传染病及其预防(第一课时)课件-2025-2026学年人教版生物八年级上册
- 2025年社工工作者考试真题及答案
- 同城理发店转租合同范本
- 医院反诈宣传课件
- 2025年日本n4试题及答案
- 2025年秋期人教版3年级上册数学核心素养教案(第2单元)(教学反思有内容+二次备课版)
- 2025乡村医生培训考试试题库及参考答案
- 智慧工业园区AI大模型数字化平台建设方案
评论
0/150
提交评论