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

@ -55,6 +55,9 @@ package com.iluwatar.servicelayer.magic {
}
}
package com.iluwatar.servicelayer.wizard {
interface WizardDao {
+ findByName(String) : Wizard {abstract}
}
class Wizard {
- id : Long
- name : String
@ -74,9 +77,6 @@ package com.iluwatar.servicelayer.wizard {
+ WizardDaoImpl()
+ findByName(name : String) : Wizard
}
interface WizardDao {
+ findByName(String) : Wizard {abstract}
}
}
package com.iluwatar.servicelayer.app {
class App {
@ -86,33 +86,14 @@ package com.iluwatar.servicelayer.app {
+ queryData() {static}
}
}
package com.iluwatar.servicelayer.spell {
class SpellDaoImpl {
+ SpellDaoImpl()
+ findByName(name : String) : Spell
}
class Spell {
- id : Long
- name : String
- spellbook : Spellbook
+ Spell()
+ Spell(name : String)
+ getId() : Long
+ getName() : String
+ getSpellbook() : Spellbook
+ setId(id : Long)
+ setName(name : String)
+ setSpellbook(spellbook : Spellbook)
+ toString() : String
}
interface SpellDao {
+ findByName(String) : Spell {abstract}
}
}
package com.iluwatar.servicelayer.spellbook {
interface SpellbookDao {
+ findByName(String) : Spellbook {abstract}
}
class SpellbookDaoImpl {
+ SpellbookDaoImpl()
+ findByName(name : String) : Spellbook
}
class Spellbook {
- id : Long
- name : String
@ -131,9 +112,28 @@ package com.iluwatar.servicelayer.spellbook {
+ setWizards(wizards : Set<Wizard>)
+ toString() : String
}
class SpellbookDaoImpl {
+ SpellbookDaoImpl()
+ findByName(name : String) : Spellbook
}
package com.iluwatar.servicelayer.spell {
class SpellDaoImpl {
+ SpellDaoImpl()
+ findByName(name : String) : Spell
}
interface SpellDao {
+ findByName(String) : Spell {abstract}
}
class Spell {
- id : Long
- name : String
- spellbook : Spellbook
+ Spell()
+ Spell(name : String)
+ getId() : Long
+ getName() : String
+ getSpellbook() : Spellbook
+ setId(id : Long)
+ setName(name : String)
+ setSpellbook(spellbook : Spellbook)
+ toString() : String
}
}
MagicServiceImpl --> "-wizardDao" WizardDao
@ -141,18 +141,18 @@ MagicServiceImpl --> "-spellbookDao" SpellbookDao
MagicServiceImpl --> "-spellDao" SpellDao
Spellbook --> "-spells" Spell
Spellbook --> "-wizards" Wizard
Wizard --|> BaseEntity
SpellbookDao --|> Dao
SpellDaoImpl ..|> SpellDao
SpellDaoImpl --|> DaoBaseImpl
MagicServiceImpl ..|> MagicService
DaoBaseImpl ..|> Dao
WizardDaoImpl ..|> WizardDao
WizardDaoImpl --|> DaoBaseImpl
Spellbook --|> BaseEntity
SpellbookDao --|> Dao
WizardDao --|> Dao
SpellbookDaoImpl ..|> SpellbookDao
SpellbookDaoImpl --|> DaoBaseImpl
Spell --|> BaseEntity
WizardDao --|> Dao
MagicServiceImpl ..|> MagicService
SpellDao --|> Dao
Spell --|> BaseEntity
Spellbook --|> BaseEntity
Wizard --|> BaseEntity
WizardDaoImpl ..|> WizardDao
WizardDaoImpl --|> DaoBaseImpl
DaoBaseImpl ..|> Dao
@enduml