/
githubmirror
/
java-design-patterns
Обзор
Документация
Войти
/
githubmirror
/
java-design-patterns
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
partial-response/etc/partial-response.urm.puml
31 строка
920 B
Ilkka Seppälä
#1113 Add uml-reverse-mapper plugin
07 дек 2019, 19:03
07 дек 2019, 19:03
0685a50
Код
Авторство
О чём код?
@startuml package com.iluwatar.partialresponse { class App { - LOGGER : Logger {static} + App() + main(args : String[]) {static} } class FieldJsonMapper { + FieldJsonMapper() - getString(video : Video, declaredField : Field) : String + toJson(video : Video, fields : String[]) : String } class Video { - description : String - director : String - id : Integer - language : String - length : Integer - title : String + Video(id : Integer, title : String, len : Integer, desc : String, director : String, lang : String) + toString() : String } class VideoResource { - fieldJsonMapper : FieldJsonMapper - videos : Map<Integer, Video> + VideoResource(fieldJsonMapper : FieldJsonMapper, videos : Map<Integer, Video>) + getDetails(id : Integer, fields : String[]) : String } } VideoResource --> "-fieldJsonMapper" FieldJsonMapper @enduml