Download presentation
Presentation is loading. Please wait.
Published byNathaniel Reed Modified over 9 years ago
1
1 Object-Oriented Programming (Java), Unit 15 Kirk Scott
2
2 Simple UML with Visio 15.1 Static Structure Diagrams for Classes and Objects 15.2 Association, Aggregation, and Composition 15.3 Inheritance, Interfaces, and Inner Classes 15.4 Sequence Diagrams
3
3 15.1 Static Structure Diagrams for Classes and Objects
4
4 15.1.1 Classes Name, attributes, and operations
5
5 15.1.2 Objects Name, name of class, attribute values
6
6 15.1.3 Instances of Classes
7
7 15.2 Association, Aggregation, and Composition
8
8 15.2.1 Binary Associations Any kind of relationship Implemented in any way Cardinality, navigability, labeling
9
9 15.2.2 Aggregations “has-a” relationship = whole to parts relationship May be expressed using a verb more specific than “has” Cardinality May be labeled on both ends
10
10
11
11 15.2.3 Compositions Like an aggregation, except that the whole cannot exist without the part(s)
12
12
13
13 15.3 Inheritance, Interfaces, and Inner Classes
14
14 15.3.1 Inheritance Subclasses refer to their superclasses
15
15 15.3.2 Interfaces “realizes” in European quotation marks may be added as a label.
16
Guillemets From Wikipedia, the free encyclopedia (Redirected from Guillemet)Guillemet Guillemets (pronounced / ˈɡɪ ləm ɛ t/, or / ɡ i ː ə ˈ me ɪ / after French [ ɡ ij(ə)m ɛ ]), also called angle quotes, are line segments, pointed as if arrows (« or »), sometimes forming a complementary set of punctuation marks used as a form of quotation mark. The symbol at either end – double « and » or single ‹ and › – is a guillemet. They are used in a number of languages to indicate speech. They are also used as symbols for rewind and fast forward./ ˈɡɪ ləm ɛ t// ɡ i ː ə ˈ me ɪ / [ ɡ ij(ə)m ɛ ]angle quotesquotation markrewindfast forward Etymology The word is a diminutive of the French name Guillaume (whose equivalent in English is William), after the French printer and punchcutter Guillaume le Bé (1525–1598). [1][2] Some languages derive their word for guillemets analogously; for example, the Irish term is Liamóg, from Liam 'William' and a diminutive suffix.diminutiveGuillaume le Bé [1][2]Irish 16
17
Guillemot From Wikipedia, the free encyclopedia Jump to: navigation, search For other uses, see Guillemot (disambiguation).navigationsearchGuillemot (disambiguation) Guillemot is the common name for several species of seabird in the order Charadriiformes, and the auk family, comprising two genera: Uria and Cepphus. This word of French origin apparently derives from a form of the name William, cf. the Welsh: Gwillim or the French: Guillaume. [1]common nameseabirdCharadriiformesauk UriaCepphusWilliamWelsh French [1] The Uria are known as murres in North America and, together with the Razorbill, Dovekie and the extinct Great Auk, make up the tribe Alcini. They have distinctly white bellies, thicker, longer bills than Cepphus and form very dense colonies on cliffs during the reproductive season.RazorbillDovekieextinctGreat Auktribe The three species of Cepphus - for which the term "guillemot" is generally reserved in North America - form a tribe of their own: Cepphini. They are smaller than the Uria species, have black bellies, rounder heads and bright red feet. 17
18
Merriam-Webster’s Online Dictionary Main Entry: guil·le·mot Pronunciation: \ ˈ gi-lə- ˌ mät\ Function: noun Etymology: French, from Middle French, diminutive of Guillaume William Date: circa 1672 1 British : a common murre (Uria aalge) 2 : any of a genus (Cepphus) of narrow- billed auks of northern seas 18
19
A Common Guillemot Between Two Brunnich’s Guillemots 19
20
The Pigeon Guillemot 20
21
The Ancient Murrelet 21
22
The Marbled Murrelet 22
23
23 If the interface is given in full elsewhere this notation can save lines in the diagram.
24
24 15.3.3 Inner Classes This is the official notation.
25
25 This is the nearest equivalent I could find in Visio.
26
26 15.4 Sequence Diagrams
27
27 15.4.1 Sequence Diagrams Objects, lifelines, activation rectangles Message passing = calling methods and returning Although not shown in these examples, messages may be labeled to specify parameters and return values
28
28 A call of a method on one object, which triggers a second call:
29
29 Calling a method within the same class
30
30 15.4.2 A Larger Sequence Diagram Example Let this code be given: public abstract class Food { private String brand; private String productName; private String units; … public void setBrand(String brandIn) { brand = brandIn; } public String getBrand() { return brand; } …
31
31 public void setBrandToThisBrand(Food anotherFood) { String tempBrand = anotherFood.getBrand(); setBrand(tempBrand); } … public abstract double getUnitCost(); }
32
32 public class PackagedFood extends Food { private double size; private double itemCost; … public void setSize(double sizeIn) { size = sizeIn; } public double getSize() { return size; } … public double getUnitCost() { return itemCost / size; }
33
33 Suppose the following is done in a calling program: PackagedFood myfood = new PackagedFood(…); PackagedFood yourfood = new PackagedFood(…); …
34
34 Suppose this call is then made: myfood.setBrandToThisBrand(yourfood); The corresponding sequence diagram is shown on the next overhead.
35
35
36
36 The End
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.