Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Object-Oriented Programming (Java), Unit 15 Kirk Scott.

Similar presentations


Presentation on theme: "1 Object-Oriented Programming (Java), Unit 15 Kirk Scott."— Presentation transcript:

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 Inheritance, Interfaces, and Inner Classes 15.3 Association, Aggregation, and Composition 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, return types, (parameters) + and – equal public and private

5 5 15.1.2 Objects Name of object, name of class, attribute values

6 6 15.1.3 Instances of Classes

7 7 15.2 Inheritance, Interfaces, and Inner Classes

8 8 15.2.1 Inheritance Subclasses refer to their superclasses

9 9 15.2.2 Interfaces “realizes” in European quotation marks may be added as a label.

10 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 10

11 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. 11

12 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 12

13 A Common Guillemot Between Two Brunnich’s Guillemots 13

14 Brunnich’s Guillemot 14

15 The Pigeon Guillemot 15

16 The Ancient Murrelet 16

17 The Marbled Murrelet 17

18 Mother Carey’s Chicken 18

19 19 If the interface is given in full elsewhere this notation can save lines in the diagram.

20 20 15.2.3 Inner Classes This is the official notation.

21 21 This is the nearest equivalent I could find in Visio.

22 22 15.3 Association, Aggregation, and Composition

23 23 15.3.1 Binary Associations Any kind of relationship Implemented in any way Cardinality, navigability, labeling

24 24 15.3.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

25 25

26 26 15.3.3 Compositions Like an aggregation, except that the whole cannot exist without the part(s)

27 27

28 28 15.4 Sequence Diagrams

29 29 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

30 30 A call of a method on one object, which triggers a second call:

31 31 Calling a method within the same class

32 32 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; } …

33 33 public void setBrandToThisBrand(Food anotherFood) { String tempBrand = anotherFood.getBrand(); setBrand(tempBrand); } … public abstract double getUnitCost(); }

34 34 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; }

35 35 Suppose the following is done in a calling program: PackagedFood myfood = new PackagedFood(…); PackagedFood yourfood = new PackagedFood(…); …

36 36 Suppose this call is then made: myfood.setBrandToThisBrand(yourfood); The corresponding sequence diagram is shown on the next overhead.

37 37

38 38 The End


Download ppt "1 Object-Oriented Programming (Java), Unit 15 Kirk Scott."

Similar presentations


Ads by Google