310 likes | 325 Views
Learn about the essential role of analysis in bridging requirements and design in software engineering. Explore conceptual classes, entity relationships, and UML class diagrams. Develop a Point-of-Sale system as a running example. Discover how to diagram classes, attributes, and associations in a domain model. Understand the concept of generalization and abstract classes in modeling. Engage in a Think-Pair-Share activity to create a domain model collaboratively.
E N D
http://flic.kr/p/9RR1BL Domain Modeling
4 SWEBOK KAs covered so far • Software Requirements • Software Design • Software Construction • Software Testing • Software Maintenance • Software Configuration Management • Software Engineering Management • Software Engineering Process • Software Engineering Models and Methods • Software Quality • Software Engineering Professional Practice • Software Engineering Economics • Computing Foundations • Mathematical Foundations • Engineering Foundations Today’s topic: Analysis
Analysis bridges the gapbetween requirements and design Design http://flic.kr/p/a1NZHb Analysis Requirements
Domain Model • “Most important—and classic—model in OO analysis” –Larman, p131 • Captures entities, attributes, and relationshipsin the problem domain • Represented with UML class diagram • Conceptualclasses • As opposed to softwareor implementationclasses • Acts as inspiration for some software classes • Lowers representational gap • Esp. for MVC model classes
Running Example: Point-of-Sale (POS) System http://flic.kr/p/4UtQzk
POS Domain Model Classes: concepts or entities in the problem domain (not software)
POS Domain Model Classes: concepts or entities in the problem domain (not software) How to diagram classes?
POS Domain Model Classes: concepts or entities in the problem domain (not software) Box for each class Name of class How to diagram classes? Compartment (optional if empty)
POS Domain Model Classes: concepts or entities in the problem domain (not software) Attributes: number or text properties of conceptual classes
POS Domain Model Classes: concepts or entities in the problem domain (not software) Attributes: number or text properties of conceptual classes How to diagram attributes?
POS Domain Model Classes: concepts or entities in the problem domain (not software) Attributes: number or text properties of conceptual classes Attribute names in compartment How to diagram attributes?
Is it a class or an attribute? If we think of an idea/thing asa number or text in the real world,it is probably an attribute, not a conceptual class
POS Domain Model Classes: concepts or entities in the problem domain (not software) Attributes: number or text properties of conceptual classes Associations: relationships between classes
Associations Readingdirection • Multiplicities: Read as • each Register records 0 or more Sales • each Sale is recorded by exactly 1 Register Name
Examples of multiplicities Also commonto see 0..* 8
How many Stores can an Item be stocked in? How many Items can a Store stock? How many Registers does a Store house? How many Sales LineItems per Sale? How many Sales LineItems can a particular Item be recorded in? POS Domain Model
How to find conceptual classes:Noun phrase identification • Identify nouns and noun phrases in descriptions of a domain • Nouns = candidate classes or attributes • Example (noun phrases bolded):
Tip: Think like a mapmaker • Use existing names in the territory • Exclude irrelevant or out-of-scope features • Do not add things that are not there http://flic.kr/p/5QKvWh
Recall the Payment class Payment There are different types of payments,like cash, credit, and checkpayments,and each type has some unique attributes How would you modelthe different payment types?
Answer: Use generalization superclass – moregeneral concept Payment generalizationrelationship(3 overlappingtriangle-arrows) subclasses – morespecialized concepts
Generalization guideline: The 100% Rule 100% of the superclass’s definition should be applicable to the subclass • The subclass must conform to 100% of the superclass’s • attributes • associations Payment
Generalization guideline: The Is-a Rule All members of the subclass setmust be members of the superclass set Informal test: “A Subclassis asuperclass” • E.g.: “A CashPayment is a Payment” Remember this!!!
When to model subclasses? Would you model this?
Guideline: Model a subclass when… • subclass has additional attributes of interest AND/OR • subclass has additional associations of interest AND/OR • subclass is operated on, handled, reacted to, or manipulated differently in ways that are of interest AND/OR • subclass represents an animate thing (e.g., animal) that behaves differently in ways that are of interest
Payment You can have cash, credit, and check payments, but can you ever really have just a Payment?
No. Payment is what we call an abstract class as opposed to a concrete class abstract Payment concrete
Payment … or when drawing by hand use Payment {abstract}
POS Example: Generalization • Does this model obey: • The 100% Rule? • The Is-a Rule?
Think-Pair-Share Activity (Quiz):Creating a Domain Model • Think • Identify nouns and noun phrases—for inspiration • Sketch class diagram • Pair • Join your partner • Collaboratively draw a class diagram • Make tentative decisions quickly, then debate • Share • I’ll randomly select diagram(s) to discuss • Identify one thing that you wish you’d thought of • Identify one thing that you would do differently
What’s next? http://flic.kr/p/YSY3X