UML generation: Mark the urm-maven-plugin execution to be ignored in Eclipse and recreate all .puml files

This commit is contained in:
Ilkka Seppälä
2016-09-18 17:51:09 +03:00
parent b030cd4eba
commit 6026eedd51
78 changed files with 1676 additions and 1609 deletions

View File

@ -1,13 +1,17 @@
@startuml
package com.iluwatar.iterator {
interface ItemIterator {
+ hasNext() : boolean {abstract}
+ next() : Item {abstract}
}
class App {
+ App()
+ main(args : String[]) {static}
}
class Item {
- name : String
- type : ItemType
+ Item(type : ItemType, name : String)
+ getType() : ItemType
+ setType(type : ItemType)
+ toString() : String
}
class TreasureChestItemIterator {
- chest : TreasureChest
- idx : int
@ -23,13 +27,9 @@ package com.iluwatar.iterator {
+ getItems() : List<Item>
~ iterator(itemType : ItemType) : ItemIterator
}
class Item {
- name : String
- type : ItemType
+ Item(type : ItemType, name : String)
+ getType() : ItemType
+ setType(type : ItemType)
+ toString() : String
interface ItemIterator {
+ hasNext() : boolean {abstract}
+ next() : Item {abstract}
}
enum ItemType {
+ ANY {static}