blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 5 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 36 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 06:45:32 | revision_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | committer_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | github_id int64 206k 631M ⌀ | star_events_count int64 0 6.51k | fork_events_count int64 0 1.54k | gha_license_id stringclasses 11 values | gha_event_created_at timestamp[us]date 2012-08-01 17:54:24 2023-09-14 21:57:05 ⌀ | gha_created_at timestamp[us]date 2009-05-21 02:09:00 2023-04-21 10:18:22 ⌀ | gha_language stringclasses 55 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 16 1.74M | extension stringclasses 12 values | code stringlengths 16 1.74M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
589d07f7afd36a46c3bbe9ef3b11c4d00c770efa | ed45ea4470bcfc497e2584697d7842a540e04fd9 | /ros2/navigation2/nav2_planner/planner_server.puml | 0b70a985edc8c60b1d6bd95051046bed9026ba4d | [] | no_license | cf-zhang/documents | ffcd8213587f8aa9c47406cf2491bf77beec9c33 | 8a4439932017b67fba7988ff7fadd9829bce1e4c | refs/heads/master | 2022-03-03T13:52:27.333343 | 2022-02-25T11:31:22 | 2022-02-25T11:31:22 | 154,789,912 | 11 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,700 | puml | @startuml
'https://plantuml.com/class-diagram
namespace nav2_planner{
class PlannerServer{
-- public method --
PlannerServer();
~PlannerServer();
using PlannerMap = std::unordered_map<std::string, nav2_core::GlobalPlanner::Ptr>;
nav_msgs::msg::Path getPlan(start, goal, planner_id);
-- protected method --
nav2_util::CallbackReturn on_configure(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_activate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_deactivate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_cleanup(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_shutdown(const rclcpp_lifecycle::State & state) override;
using ActionT = nav2_msgs::action::ComputePathToPose;
using ActionServer = nav2_util::SimpleActionServer<ActionT>;
std::unique_ptr<ActionServer> action_server_;
void computePlan();
void publishPlan(const nav_msgs::msg::Path & path);
-- protected data --
PlannerMap planners_;
pluginlib::ClassLoader<nav2_core::GlobalPlanner> gp_loader_;
std::vector<std::string> default_ids_;
std::vector<std::string> default_types_;
std::vector<std::string> planner_ids_;
std::vector<std::string> planner_types_;
double max_planner_duration_;
std::string planner_ids_concat_;
rclcpp::Clock steady_clock_{RCL_STEADY_TIME};
std::shared_ptr<tf2_ros::Buffer> tf_;
std::shared_ptr<nav2_costmap_2d::Costmap2DROS> costmap_ros_;
std::unique_ptr<nav2_util::NodeThread> costmap_thread_;
nav2_costmap_2d::Costmap2D * costmap_;
rclcpp_lifecycle::LifecyclePublisher<nav_msgs::msg::Path>::SharedPtr plan_publisher_;
}
}
nav2_util.LifecycleNode <-- nav2_planner.PlannerServer
@enduml |
aa207bbfb4f1d648c01ec0030b6f4edf8b09aa72 | 92dc3f15de7761ad32a6bc5ca2973c227bafdd46 | /diagrams/T2b.puml | 8bbd3a86a5f126a6d835b7e6d8bfe88e08fe5fea | [] | no_license | bhnatkowska/ClassDiagramComparison | bfcaf68ec2f10e46abb81d4461591b869a658248 | aee3f7a89c69667ee1c85f2b0961f2b5febb8172 | refs/heads/master | 2023-02-14T02:25:39.835157 | 2021-01-03T10:43:00 | 2021-01-03T10:43:00 | 326,383,253 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,460 | puml | @startuml
class OrderDetails {
od_orderLineNumber : Integer
e_jobTitle : String
}
class Dummy3 {
o_orderDate : String
o_status : String
}
class Customer {
c_customerName : String
c_phone : String
c_addressLine1 : String
c_customerNumber : Integer
c_contactLastName : String
c_contactFirstName : String
c_city : String
c_postalCode : Integer
c_creditLimit : Integer
}
class Employee {
e_email : String
e_lastName : String
e_employeeNumber : Integer
e_firstName : String
e_extension : String
}
class Order {
o_orderNumber : Integer
o_requiredDate : String
o_shippedDate : String
off_territory : String
off_postalCode : Integer
off_addressLine2 : String
off_officeCode : Integer
o_comments : String
c_state : String
c_country : String
off_city : String
off_addressLine1 : String
off_state : String
c_addressLine2 : String
off_phone : String
e_reportsTo : Integer
off_country : String
}
class ProductLine {
pln_productLine : String
pln_textDescription : String
p_productScale : String
}
class Product {
p_MSRP : Real
p_productCode : String
p_productName : String
p_buyPrice : Real
p_quantityInStock : Integer
p_productDescription : String
p_productVendor : String
}
class Dummy10 {
od_quantityOrdered : Integer
od_priceEach : String
}
Customer "1..*" -- "1" Employee
Order "1..*" -- "1" Dummy3
Order "1..*" -- "1" Customer
Product "1..*" -- "1" ProductLine
Product "1..*" -- "1..*" Dummy3
(Product,Dummy3) .. Dummy10
OrderDetails "1..*" -- "1..*" Order
@enduml |
10b6a5db7dc7fa81278ce35ab214bfb0624c3ac0 | 8bf775240facf29d08f57be6e5f2a4975c5086e7 | /app/app.plantuml | 59ae9ca47563230eaf7e5e839e76948bc803cfb9 | [] | no_license | Merdzhanov/HealthyApp | 0e0724a799f6e7987d0043e898faa82172d89744 | a002cfef0efc1bdffa1fb490915aa47e09cdcfbc | refs/heads/master | 2020-03-26T21:57:51.034523 | 2018-08-20T14:02:52 | 2018-08-20T14:02:52 | 145,421,740 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,912 | plantuml | @startuml
title __APP's Class Diagram__\n
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.authentication {
class BaseActivity {
}
}
}
package com.deviantsatyr.healthy {
class BuildConfig {
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.authentication {
class ChooserActivity {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.views {
class DailyMealsListFragment {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.views {
class DailySummaryActivity {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.models {
class Dining {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.authentication {
class EmailPasswordActivity {
}
}
}
package com.deviantsatyr.healthy {
class ExampleInstrumentedTest {
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.repositories {
class FirebaseRepository {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.views {
class GadgetsFragment {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.authentication {
class GoogleSignInActivity {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.models {
class Meal {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.views {
class MealDetailsActivity {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.views {
class MealDetailsFragment {
}
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.uiutils {
interface Navigator {
}
}
}
package com.deviantsatyr.healthy {
class R {
}
}
package android.support.v7.cardview {
class R {
}
}
package com.google.firebase {
package com.google.firebase.measurement {
class R {
}
}
}
package com.firebase.ui.auth {
class R {
}
}
package com.google.firebase {
package com.google.firebase.firebase_core {
class R {
}
}
}
package android.support.compat {
class R {
}
}
package com.google.android.gms.stats {
class R {
}
}
package android.support.fragment {
class R {
}
}
package android.arch.core {
class R {
}
}
package com.google.android.gms.base {
class R {
}
}
package android.support.constraint {
class R {
}
}
package android.support.coreui {
class R {
}
}
package me.zhanghai.android.materialprogressbar {
class R {
}
}
package com.google.android.gms.flags {
class R {
}
}
package com.google.android.gms.common {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.viewmodel {
class R {
}
}
}
package android.support.customtabs {
class R {
}
}
package com.google.firebase {
package com.google.firebase.firestore {
class R {
}
}
}
package com.google.android.gms.ads_identifier {
class R {
}
}
package com.google.firebase {
package com.google.firebase.analytics.connector {
class R {
}
}
}
package android.support.v7.recyclerview {
class R {
}
}
package com.google.android.gms.auth {
class R {
}
}
package android.support.transition {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
package android.arch.lifecycle.livedata.core {
class R {
}
}
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.extensions {
class R {
}
}
}
package android.support.coreutils {
class R {
}
}
package com.google.firebase {
package com.google.firebase.measurement {
package com.google.firebase.measurement_impl {
class R {
}
}
}
}
package com.google.firebase {
package com.google.firebase.analytics.connector {
package com.google.firebase.analytics.connector.impl {
class R {
}
}
}
}
package com.google.android.gms.auth {
package com.google.android.gms.auth.api {
package com.google.android.gms.auth.api.phone {
class R {
}
}
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
class R {
}
}
}
package android.support.design {
class R {
}
}
package android.support.graphics.drawable {
package android.support.graphics.drawable.animated {
class R {
}
}
}
package firebase.com.protolitewrapper {
class R {
}
}
package com.google.android.gms.tasks {
class R {
}
}
package com.google.firebase {
package com.google.firebase.iid {
class R {
}
}
}
package com.google.firebase {
package com.google.firebase.database.collection {
class R {
}
}
}
package com.google.android.gms.measurement_base {
class R {
}
}
package com.google.firebase {
class R {
}
}
package com.google.firebase {
package com.google.firebase.iid {
package com.google.firebase.iid.internal {
class R {
}
}
}
}
package com.google.firebase {
package com.google.firebase.auth {
package com.google.firebase.auth.internal {
class R {
}
}
}
}
package android.support.v7.appcompat {
class R {
}
}
package com.google.android.gms.auth {
package com.google.android.gms.auth.api {
class R {
}
}
}
package com.google.firebase {
package com.google.firebase.auth {
class R {
}
}
}
package android.support.mediacompat {
class R {
}
}
package android.arch.lifecycle {
class R {
}
}
package android.support.v4 {
class R {
}
}
package android.support.graphics.drawable {
class R {
}
}
package com.deviantsatyr.healthy {
package com.deviantsatyr.healthy.repositories {
package com.deviantsatyr.healthy.repositories.base {
interface Repository {
}
}
}
}
BaseActivity -up-|> AppCompatActivity
ChooserActivity -up-|> OnItemClickListener
ChooserActivity -up-|> AppCompatActivity
DailyMealsListFragment -up-|> OnItemClickListener
DailyMealsListFragment -up-|> Fragment
DailyMealsListFragment o-- Navigator : navigator
DailyMealsListFragment o-- Navigator : mNavigator
DailySummaryActivity -up-|> Navigator
DailySummaryActivity -up-|> Activity
DailySummaryActivity o-- DailyMealsListFragment : mDailyMealsListFragment
DailySummaryActivity o-- GadgetsFragment : mGadgetsFragment
DailySummaryActivity o-- MealDetailsFragment : mMealDetailsFragment
EmailPasswordActivity -up-|> OnClickListener
EmailPasswordActivity -up-|> BaseActivity
FirebaseRepository -up-|> Repository
GadgetsFragment -up-|> Fragment
GoogleSignInActivity -up-|> OnClickListener
GoogleSignInActivity -up-|> BaseActivity
MealDetailsActivity -up-|> Activity
MealDetailsActivity o-- MealDetailsFragment : mMealDetailsFragment
MealDetailsFragment -up-|> Fragment
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
40b0eb20327973659d0e3b610ed4db3b30e7c63e | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Test.Unit/CookControllerTest.puml | bc13f2b2dc3dda7c1ca0fcef1945b07d6cfdb4d3 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 368 | puml | @startuml
class CookControllerTest {
+ Setup() : void
+ StartCooking_ValidParameters_TimerStarted() : void
+ StartCooking_ValidParameters_PowerTubeStarted() : void
+ Cooking_TimerTick_DisplayCalled() : void
+ Cooking_TimerExpired_PowerTubeOff() : void
+ Cooking_TimerExpired_UICalled() : void
+ Cooking_Stop_PowerTubeOff() : void
}
@enduml
|
11c359dbdb78bc6cf9ca35f7ebd81a85e6585a56 | 128331354dfdc23feac9288a9d3956480f2b9601 | /out/production/Java_Final_Project/com/bank/GUI/Components/Components.plantuml | ec1b67d06de433f581ed4e5bc3171ecc2f15d07d | [] | no_license | SamerAtawna/JavaBank | d812a16e6bdb09f3e62d0236ce866a5e161a0e01 | 240715f240ebb9035f852d4402d17aaa04d32c95 | refs/heads/master | 2022-12-14T10:26:04.406020 | 2020-09-09T11:13:21 | 2020-09-09T11:13:21 | 272,089,064 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,707 | plantuml | @startuml
title __COMPONENTS's Class Diagram__\n
namespace com.bank.GUI {
namespace Components {
class com.bank.GUI.Components.Bottom {
~ calc : JButton
~ icon : ImageIcon
~ icon2 : ImageIcon
~ trans : JButton
+ Bottom()
}
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center {
~ tabs : JTabbedPane
+ Center()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center_Clients {
~ clientsNum : JLabel
~ clientsTable : JPanel
~ numClientsPanel : JPanel
~ numOfClientsLabel : JLabel
~ numofClients : Integer
~ searchButton : JButton
~ searchLabel : JLabel
~ searchPanel : JPanel
~ searchTextField : JTextField
~ topPanel : JPanel
~ Center_Clients()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center_Dispose {
~ clientLabel : JLabel
~ clientTextField : JTextField
~ top : JPanel
~ withdrawButton : JButton
~ withdrawLabel : JLabel
~ withdrawTextField : JTextField
~ Center_Dispose()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center_NewClient {
~ accountLabel : JLabel
~ accountStatus : ButtonGroup
~ accountTextField : JTextField
~ balanceLabel : JLabel
~ balanceTextField : JTextField
~ cardCodeLabel : JLabel
~ cardCodeTextField : JTextField
~ formPanel : JPanel
~ fullNameLabel : JLabel
~ gbc : GridBagConstraints
~ idLabel : JLabel
~ idTextField : JTextField
~ nameTextField : JTextField
~ statusActive : JRadioButton
~ statusDisabled : JRadioButton
~ statusLabel : JLabel
~ submit : JButton
~ Center_NewClient()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center_Transfer {
~ amountField : JTextField
~ amountLabel : JLabel
~ fromField : JTextField
~ fromLabel : JLabel
~ toField : JTextField
~ toLabel : JLabel
~ top : JPanel
~ transferButton : JButton
~ Center_Transfer()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Center_Withdraw {
~ clientLabel : JLabel
~ clientTextField : JTextField
~ top : JPanel
~ withdrawButton : JButton
~ withdrawLabel : JLabel
~ withdrawTextField : JTextField
~ Center_Withdraw()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.ClientsTable {
~ clientsTable : JTable
~ model : DefaultTableModel
{static} - instance : ClientsTable
{static} + getInstance()
+ setData()
~ ClientsTable()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.ClientsTable_Helper {
~ clientsTable : JTable
~ model : DefaultTableModel
+ setData()
~ ClientsTable_Helper()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.LogoSmall {
- image : BufferedImage
+ LogoSmall()
# paintComponent()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.State {
+ disposeToRef : JTextField
+ tableHelperList : ArrayList<ClientsTable_Helper>
+ withDrawRef : JTextField
~ clients : ArrayList<Client>
~ clientsNumber : int
~ currentView : String
~ disposeTo : String
~ transClient : int
{static} - instance : State
+ getClients()
+ getClientsNumber()
+ getCurrentView()
+ getDisposeTo()
+ getDisposeToRef()
{static} + getInstance()
+ getLoggedUser()
+ getTransClient()
+ getWithDrawRef()
+ notifyTables()
+ setClients()
+ setClientsNumber()
+ setCurrentView()
+ setDisposeTo()
+ setDisposeToRef()
+ setLoggedUser()
+ setTransClient()
+ setWithDrawRef()
- State()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Top {
~ gbc : GridBagConstraints
~ loggedUserLabel : JLabel
~ loggedUsername : JLabel
~ permission : JLabel
~ permissionLabel : JLabel
~ smallLogo : JPanel
~ time : JPanel
~ timeLabel : JLabel
~ timeLogin : JLabel
~ timeLoginLabel : JLabel
~ userContainer : JPanel
~ userPanel : JPanel
+ Top()
}
}
namespace com.bank.GUI {
class com.bank.GUI.Components.Transactions {
~ model : DefaultTableModel
~ transactions : JTable
{static} - instance : Transactions
{static} + getInstance()
+ setTransData()
~ Transactions()
}
}
com.bank.GUI.Components.Bottom -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_Clients -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_Clients o-- Common.ClientThread : clientThread
com.bank.GUI.Components.Center_Dispose -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_Dispose o-- Common.ClientThread : clientThread
com.bank.GUI.Components.Center_NewClient -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_NewClient o-- Common.ClientThread : clientThread
com.bank.GUI.Components.Center_Transfer -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_Transfer o-- Common.ClientThread : clientThread
com.bank.GUI.Components.Center_Withdraw -up-|> javax.swing.JPanel
com.bank.GUI.Components.Center_Withdraw o-- Common.ClientThread : clientThread
com.bank.GUI.Components.ClientsTable -up-|> javax.swing.JPanel
com.bank.GUI.Components.ClientsTable o-- Common.ClientThread : clientThread
com.bank.GUI.Components.ClientsTable_Helper -up-|> javax.swing.JPanel
com.bank.GUI.Components.ClientsTable_Helper o-- Common.ClientThread : clientThread
com.bank.GUI.Components.LogoSmall -up-|> javax.swing.JPanel
com.bank.GUI.Components.State o-- Classes.User : loggedUser
com.bank.GUI.Components.Top -up-|> javax.swing.JPanel
com.bank.GUI.Components.Top o-- Classes.User : currUser
com.bank.GUI.Components.Transactions -up-|> javax.swing.JFrame
@enduml
|
9711a97fe44fa5c81a2bc41e2d576270adf2240c | 487fe3499dd9b1480c42067416409603f311fe29 | /Projekt_new.plantuml | d47f1b17bcad3e0228a51b7d4263d86db987bcfd | [] | no_license | ddoox/PO_EventsManagement_Project | 44dcad7e87ee61f0ce42c784c402d194cedffb39 | c8ad7e8148f75222e86cb9b719742c34f9a38a38 | refs/heads/master | 2022-07-27T00:16:35.673257 | 2020-05-18T16:00:09 | 2020-05-18T16:00:09 | 264,986,558 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,023 | plantuml | @startuml
title __PROJEKT's Class Diagram__\n
package model {
class Bilet {
}
}
package model {
class BladMiejsce {
}
}
package model {
class BladWiek {
}
}
package model {
class ListaOrganizatorów {
}
}
package model {
class Main {
}
}
package model {
interface Obserwator {
}
}
package model {
interface Obserwowany {
}
}
package model {
class Organizator {
}
}
package model {
class Sala {
}
}
package model {
class Wydarzenie {
}
}
package model {
class Zespół {
}
}
package gui {
class bilet {
}
}
package gui {
class organizator_events {
}
}
package gui {
class organizator_form {
}
}
package gui {
class organizator_login {
}
}
package gui {
class witamyGUI {
}
}
Organizator -up-|> Runnable
Organizator -up-|> Obserwowany
Organizator o-- Obserwator : obserwator
Wydarzenie o-- Sala : sala
Wydarzenie o-- Zespół : zespół
bilet o-- Wydarzenie : wydarzenie
bilet o-- ListaOrganizatorów : listaOrganizatorów
bilet o-- Organizator : organizator
organizator_events -up-|> Obserwator
organizator_events o-- Organizator : organizator
organizator_events o-- ListaOrganizatorów : lista
organizator_events o-- Zespół : zespol
organizator_events o-- Sala : sala
organizator_events o-- Obserwator : obserwator
organizator_form o-- Organizator : organizator
organizator_form o-- Wydarzenie : wydarzenie
organizator_form o-- Sala : sala
organizator_form o-- Zespół : zespół
organizator_form o-- ListaOrganizatorów : lista
organizator_login o-- ListaOrganizatorów : lista
witamyGUI o-- ListaOrganizatorów : lista
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
30abd16cf20ba512b0f6c60c7fcf956bc02d3d47 | 1d0613fb401e92b6861ea3f615561df854603db6 | /KiBuzzard/deps/fonttools/Doc/source/designspaceLib/v5_class_diagram.puml | 31f9e9c361ea7cb42ff90b987899c7b8eef8e38b | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"OFL-1.1",
"BSD-3-Clause",
"Apache-2.0",
"CC-BY-SA-4.0",
"CC-BY-SA-3.0"
] | permissive | gregdavill/KiBuzzard | 8c84a4339108c9942e1ec0e05e4110bba49fd265 | 88c4129b3fbed2cad718c01e5e2d29204e2f2071 | refs/heads/main | 2023-09-01T19:46:45.146077 | 2023-08-31T11:55:10 | 2023-08-31T11:55:10 | 328,686,533 | 358 | 36 | MIT | 2023-08-31T12:12:45 | 2021-01-11T14:16:42 | Python | UTF-8 | PlantUML | false | false | 6,925 | puml | @startuml v5_class_diagram
title
Designspace v5 Class Diagram
<size:12>Note: the ""Descriptor"" suffix is omitted from most classes
end title
' left to right direction
skinparam class {
BackgroundColor<<New>> PaleGreen
}
class DesignSpaceDocument {
+ formatVersion: str = None
+ <color:green><b><<New>> elidedFallbackName: str = None
+ rulesProcessingLast: bool = False
+ lib: Dict = {}
}
note left of DesignSpaceDocument::elidedFallbackName
STAT Style Attributes Header field ""elidedFallbackNameID""
end note
abstract class AbstractAxis {
+ tag: str
+ name: str
+ labelNames: Dict[str, str]
+ hidden: bool
+ map: List[Tuple[float, float]]
+ <color:green><b><<New>> axisOrdering: int
}
DesignSpaceDocument *-- "*" AbstractAxis: axes >
note right of AbstractAxis::axisOrdering
STAT Axis Record field
end note
class Axis {
+ minimum: float
+ maximum: float
+ default: float
}
AbstractAxis <|--- Axis
note bottom of Axis
This is the usual
Axis, with a range
of values.
end note
class DiscreteAxis <<New>> {
+ values: List[float]
+ default: float
}
AbstractAxis <|--- DiscreteAxis
note bottom of DiscreteAxis
A discrete axis is not
interpolable, e.g.
Uprights vs Italics, and
so has "discrete" stops
instead of a continuous
range of values.
end note
Axis .[hidden] DiscreteAxis
class AxisLabel <<New>> {
+ userMinimum: Optional[float]
+ userValue: float
+ userMaximum: Optional[float]
+ name: str
+ elidable: bool
+ olderSibling: bool
+ linkedUserValue: Optional[float]
+ labelNames: Dict[str, str]
+ getFormat(): 1 | 2 | 3
}
note right of AxisLabel
Label for a
stop on an Axis
(STAT format
1,2,3)
end note
AbstractAxis *-- "*" AxisLabel: <<New>> \n axisLabels >
class LocationLabel <<New>> {
+ name: str
+ location: Dict[str, float]
+ elidable: bool
+ olderSibling: bool
+ labelNames: Dict[str, str]
}
note right of LocationLabel
Label for a
freestanding
location
(STAT format 4)
end note
DesignSpaceDocument *--- "*" LocationLabel: <<New>> \n locationLabels >
class Rule {
+ name: str
+ conditionSets: List[ConditionSet]
+ subs: Dict[str, str]
}
DesignSpaceDocument *- "*" Rule: rules >
class Source {
+ name: Optional[str]
+ filename: str
+ path: str
+ layerName: Optional[str]
+ <color:brown><s><<Deprecated>> location: Location
+ <color:green><b><<New>> designLocation: AnisotropicLocation
....
+ font: Optional[Font]
....
+ familyName: Optional[str]
+ styleName: Optional[str]
+ <color:green><b><<New>> localisedFamilyName: Dict
....
+ <color:brown><s><<Deprecated>> copyLib: bool
+ <color:brown><s><<Deprecated>> copyInfo: bool
+ <color:brown><s><<Deprecated>> copyGroups: bool
+ <color:brown><s><<Deprecated>> copyFeatures: bool
....
+ muteKerning: bool
+ muteInfo: bool
+ mutedGlyphNames: List[str]
----
+ <color:green><b><<New>> getFullDesignLocation(doc)
}
DesignSpaceDocument *-- "*" Source: sources >
note right of Source::localisedFamilyName
New field to allow generation
of localised instance names using
STAT information.
end note
note right of Source::copyGroups
These fields are already not meaningful
anymore in version 4 (the default source
will be used as "neutral" for groups, info
and features. ''copyLib'' can be emulated
by putting content in the designspace's lib.
end note
note as NLocSource
The location of
sources can still only
be defined in design
coordinates, and now
also by relying on
axis defaults.
To build the final,
"full" location, a
helper method is
provided, that uses
axis defaults and
axis mappings to
fill in the blanks.
end note
NLocSource . Source::designLocation
NLocSource . Source::getFullDesignLocation
class VariableFont <<New>> {
+ filename: str
+ lib: Dict
}
DesignSpaceDocument *--- "*" VariableFont: <<New>> \n variableFonts >
note right of VariableFont
A variable font is a
subset of the designspace
where everything interpolates
(and so can be compiled into
an OpenType variable font).
end note
abstract class AbstractAxisSubset <<New>> {
+ name: str
}
VariableFont *-- "*" AbstractAxisSubset: <<New>> \n axisSubsets >
note right of AbstractAxisSubset
An axis subset selects a range
or a spot on each the available
axes from the whole designspace.
By default, only the default value
of each axis is used to define the
variable font.
Continuous axes can be specified
to include their full range instead;
or a subset of the range.
Discrete axes can be specified
to include a different spot than the
default.
end note
class RangeAxisSubset <<New>> {
+ userMinimum: float
+ userDefault: float
+ userMaximum: float
}
AbstractAxisSubset <|-- RangeAxisSubset
class ValueAxisSubset <<New>> {
+ userValue: float
}
AbstractAxisSubset <|-- ValueAxisSubset
class Instance {
+ filename: str
+ path: str
+ <color:brown><s><<Deprecated>> location: Location
+ <color:green><b><<New>> locationLabel: str
+ <color:green><b><<New>> designLocation: AnisotropicLocation
+ <color:green><b><<New>> userLocation: SimpleLocation
....
+ font: Optional[Font]
....
+ <color:orange><b><<Changed>> name: Optional[str]
+ <color:orange><b><<Changed>> familyName: Optional[str]
+ <color:orange><b><<Changed>> styleName: Optional[str]
+ <color:orange><b><<Changed>> postScriptFontName: Optional[str]
+ <color:orange><b><<Changed>> styleMapFamilyName: Optional[str]
+ <color:orange><b><<Changed>> styleMapStyleName: Optional[str]
+ localisedFamilyName: Dict
+ localisedStyleName: Dict
+ localisedStyleMapFamilyName: Dict
+ localisedStyleMapStyleName: Dict
....
+ <color:brown><s><<Deprecated>> glyphs: Dict
+ <color:brown><s><<Deprecated>> kerning: bool
+ <color:brown><s><<Deprecated>> info: bool
....
+ lib: Dict
----
+ <color:green><b><<New>> clearLocation()
+ <color:green><b><<New>> getLocationLabelDescriptor(doc)
+ <color:green><b><<New>> getFullDesignLocation(doc)
+ <color:green><b><<New>> getFullUserLocation(doc)
}
DesignSpaceDocument *-- "*" Instance: instances >
note right of Instance::locationLabel
The location can now alternatively
be a string = name of a LocationLabel
(STAT format 4). The instance then
adopts the location of that label.
See the Decovar example file.
end note
note right of Instance::styleMapStyleName
All the name field are now optional.
Their default values will be computed
using the provided STAT table data
and the STAT rules from the spec.
For styleMap{Family,Style}Name, they
would be computed using the STAT
""linkedUserValue"" fields.
end note
note right of Instance::glyphs
This attribute has been replaced by rules
end note
note right of Instance::kerning
All instances get kerning and info
nowadays.
end note
note as NLocInstance
The location of instances
can now be defined using
either:
- a STAT LocationLabel
- design coordinates
- user coordinates.
- relying on axis defaults
To build the final, "full"
location, a few helper
methods are provided,
that aggregate data from
these sources and apply
the axis mappings.
end note
NLocInstance . Instance::designLocation
NLocInstance . Instance::getFullDesignLocation
@enduml
|
dcd672710ab02e0250d00ce08f0e30a4af643fe1 | be3a5e5be36aa341c28c3596bd657f3b580819dd | /exercise46/docs/diagram.puml | d55825d4bd9990a6f8b6759ce90de2f0e640567e | [] | no_license | pothyn/davis-a04 | 2588076f633cbee2966b4c9ce383136d72c0cf70 | 0203cf78ee7c60af7e1c395209648e630e8057c8 | refs/heads/main | 2023-08-21T22:08:59.967163 | 2021-10-15T16:21:37 | 2021-10-15T16:21:37 | 415,346,543 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 222 | puml | @startuml
class Solution46 {
-frequency: Hashmap<String, int>
-textParsed: ArrayList<String>
+main(String[]): void
+readFromFile(String): void
+generateTable(Hashmap<String, int>): String
}
@enduml |
622c4edb543bb43be3ba3286ecebb910acff8682 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-class-plan.iuml | f27db1069503670ff37977990c6d3d7edbb71678 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 218 | iuml | @startuml
class Arkivstruktur.NasjonaleIdentifikatorer.Plan <Nasjonalidentifikator> {
+kommunenummer : string [0..1]
+fylkesnummer : string [0..1]
+landkode : Land [0..1]
+planidentifikasjon : string
}
@enduml
|
6e3d7f93844f7d9e6864c7cee25070df54727fec | a3a48bef46b31fcdd914f8ab67f5282f560d5c28 | /hipparchus-geometry/src/site/design/twoD.puml | dac96fc2813a7a87c9f309fef1b482d645b28c7e | [
"BSD-3-Clause",
"Minpack",
"Apache-2.0",
"MIT",
"GPL-2.0-only",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla"
] | permissive | Hipparchus-Math/hipparchus | f88ebc1e4a9ab8cd698f258564ecfcda75a389a6 | fc5af4e976fb48de690c6670b0bc0214d0b095db | refs/heads/master | 2023-09-04T12:34:51.209790 | 2023-09-01T17:26:49 | 2023-09-01T17:26:49 | 60,063,484 | 114 | 41 | Apache-2.0 | 2023-08-19T10:30:33 | 2016-05-31T06:24:32 | Java | UTF-8 | PlantUML | false | false | 2,426 | puml | ' Licensed to the Apache Software Foundation (ASF) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' The ASF licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
package org.hipparchus.geometry #ECEBD8 {
interface Space {
+int getDimension()
+Space getSubSpace()
}
note top
Space is mainly used as a parameter
for generics and to link d-dimensional
space with (d-1)-dimensional space
end note
interface "Vector<S extends Space>" as Vector_S_ {
+Space getSpace()
+Vector getZero()
+double getNorm()
+Vector add()
+Vector subtract()
+Vector negate()
+Vector normalize()
+Vector scalarMultiply()
+boolean isNaN()
+boolean isInfinite()
+double distance()
+double dotProduct()
}
Space <-- Vector_S_
package partitioning #DDEBD8 {
interface "Region<S extends Space>" as Region_S_
interface "Hyperplane<S extends Space>" as Hyperplane_S_
interface "SubHyperplane<S extends Space>" as SubHyperplane_S_
}
package euclidean #DDEBD8 {
package twod #DDDBD8 {
class Euclidean2D
class Vector2D
class Line
class SubLine
class PolygonsSet
Space <|.. Euclidean2D
Vector_S_ <|.. Vector2D
Hyperplane_S_ <|.. Line
SubHyperplane_S_ <|.. SubLine
Region_S_ <|.. PolygonsSet
}
}
}
@enduml
|
576e9fad465e528945daafbeb80315593533cee4 | 8a63b0892998da88f779e8a105831b644232540c | /DesignPatternlib/src/main/java/com/lhf/designpatternlib/proxy/proxy.puml | 6d602cfdf1aa8adfdfcad3b6a879b46dda39c8ab | [] | no_license | Joshua-Lu/MyStudyApp | b57311677135f3f5e0c98236afbbb14bdae8cbf1 | 6ca03dfd1bcbcb72bf53459949ee34a1879535b7 | refs/heads/master | 2023-08-09T19:00:38.909776 | 2023-07-30T16:15:28 | 2023-07-30T16:15:28 | 225,662,424 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 331 | puml | @startuml
interface ISubject {
void request()
}
class RealSubject implements ISubject {
+ void request()
}
class ProxySubject implements ISubject {
- ISubject realSubject
+ ProxySubject(ISubject realSubject)
+ void request()
- void postRequest()
- void preRequest()
}
ProxySubject *-- ISubject
@enduml |
2c8f3dcdf952d62ed9a483ec10ba50a5c0917a6d | 271f0f3e3b3ea50976d5b48135549f5512360d1c | /app/src/main/java/keijumt/design_pattern/pattern/prototype/prototype.puml | d095c6410653cd48c43275c6b78f0e43544b5119 | [] | no_license | keijumt/design-pattern | cffea9727fa903ac3e4d42842e4ed34f6ec2e3c1 | ec811a9ea941ec442b20b81fd04a536082eab2bf | refs/heads/master | 2020-03-23T14:45:58.234219 | 2018-07-30T13:58:59 | 2018-07-30T13:58:59 | 141,697,922 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 250 | puml | @startuml
interface Prototype{
+ createClone():Any
}
class ConcretePrototype{
+ createClone():ConcretePrototype
}
class Main
Prototype <|.. ConcretePrototype
Main o-- ConcretePrototype : createCloneでクローンを作成する
@enduml |
0b87faaf82bdcc5595fb7842434d7acdfaebf8ec | 4743382c91e4afba68052bd1dedf27750b37beba | /src/main/java/AMCWardPanels/TableFrames/Discharge/Discharge.plantuml | 8698b685a696b0fb757d0f145f659ca5b7fc85da | [] | no_license | felipe-rg/GoingWithTheFlow | d5890046d86988c09a2165ce4e5d15534b5075ec | 0bb815555eb9fd2baad0e63aee05d7b736c8c3da | refs/heads/master | 2023-02-17T15:52:43.822817 | 2021-01-14T18:33:41 | 2021-01-14T18:33:41 | 321,016,403 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,712 | plantuml | @startuml
title __AMCWardPanels.TableFrames.Discharge Package Diagram__\n
namespace AMCWardPanels {
namespace TableFrames {
namespace Discharge {
class AMCWardPanels.TableFrames.Discharge.DisTable {
+ DisTable()
}
}
}
}
namespace AMCWardPanels {
namespace TableFrames {
namespace Discharge {
class AMCWardPanels.TableFrames.Discharge.DisTableModel {
+ DisTableModel()
+ DisTableModel()
+ isCellEditable()
}
}
}
}
namespace AMCWardPanels {
namespace TableFrames {
namespace Discharge {
class AMCWardPanels.TableFrames.Discharge.DisTablePanel {
- columnName : String[]
- dbData : Object[][]
- scrollPane : JScrollPane
- table : JTable
+ DisTablePanel()
+ setupTable()
+ tableChanged()
- editPatient()
}
}
}
}
AMCWardPanels.TableFrames.Discharge.DisTableModel -up-|> AMCWardPanels.TableFrames.MyTableModel
AMCWardPanels.TableFrames.Discharge.DisTablePanel .up.|> javax.swing.event.TableModelListener
AMCWardPanels.TableFrames.Discharge.DisTablePanel -up-|> javax.swing.JPanel
AMCWardPanels.TableFrames.Discharge.DisTablePanel o-- Methods.GeneralWard
AMCWardPanels.TableFrames.Discharge.DisTablePanel o-- AMCWardPanels.TableFrames.Discharge.DisTableModel
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
f2d35aae314912c2aff3fce4cd9146746462c1e7 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ParcelItemsUpdatedMessagePayload.puml | 21102c7d5d72e40502895f2f0bb4644fc17ceb2a | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 608 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface ParcelItemsUpdatedMessagePayload [[ParcelItemsUpdatedMessagePayload.svg]] extends OrderMessagePayload {
type: String
parcelId: String
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
|
dd444856ac47a72193c1a99285fa7bb8c9409bb3 | 5069944d4b644c23d8f011d011fb3ca168465309 | /observer/Go/observer1/observer.puml | 98f3e9912ad77ce7645aa1270dd0c37db975d7e7 | [] | no_license | hidenorigoto/practice-design-patterns | 46d7f18eaa546e350564d123d67838ae5b79ed00 | f04422671bdbd3fe701a71e03d55bf29bdeb6223 | refs/heads/master | 2020-08-29T16:34:10.235631 | 2019-10-28T16:41:32 | 2019-10-28T16:41:32 | 218,094,348 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 234 | puml | @startuml
interface Observer {
Notify(message s)
}
class Publisher {
AddObserver(Observer o)
RemoveObserver(Observer o)
NotifyObservers(message s)
}
class TestObserver implements Observer {
}
Observer <-- Publisher
@enduml |
e70218fe5197a5b3d8d4930888dbcc85b57a97a6 | 9c029a905c4381d59d0db1c94e2cfec1596ccd72 | /models/ver1/dep-rev2.puml | 1ce8e82ec0e9d49904c71f7abca582b29a4cdbe2 | [] | no_license | suzuki-hoge/genbade-ddd-tokyo | 90cb609a5b013f9be3867ef773f1e57535a9ffb6 | 4867eb61ce2f98dc2445fd07e7535c4ad44609f0 | refs/heads/master | 2020-05-19T21:55:17.317817 | 2019-05-11T08:11:39 | 2019-05-11T08:11:39 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 365 | puml | @startuml
package service {
class FooService
}
package domain {
class Mail
interface MailRepository {
send(Mail)
}
}
package system {
class MailRepositoryImpl {
send(Mail)
}
}
FooService --> MailRepository : 送って
FooService --> Mail
MailRepository -r-> Mail
MailRepositoryImpl -u-|> MailRepository
MailRepositoryImpl --> Mail
@enduml
|
6f26b57496d99cfe8fcc6a4eb30e1f3c9654a84b | e31b7f835fc74e8fdd19e85432fdd362c11eaef1 | /src/main/resources/ex43.puml | 86296767cd9458e6b3ec981f1ff72020a370d4e1 | [] | no_license | lhernandez97/hernandez-cop3330-assignment3 | 07e92d8064fc52ed8be32ba5ba5b393721cc8fd2 | 2b69edc66f6e7da7270c422921cd446724909c9c | refs/heads/master | 2023-09-05T20:58:30.576483 | 2021-10-12T03:54:41 | 2021-10-12T03:54:41 | 416,174,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 290 | puml | @startuml
'https://plantuml.com/class-diagram
class App
class WebsiteMaker
App <|- WebsiteMaker
class App {
main()
}
class WebsiteMaker {
+String directorypath
createWebsite() : String
html() : String
javascriptWebsite() : String
cssWebsite() : String
}
@enduml |
20601877583036a8e95a120c38a426890d4f5062 | a30b93addd419ce3dde8643ee0ad244aaeda5a31 | /src/06_3_cd_history.puml | 6656e910d5fa19240c86ee8c3462f6d0effb16c2 | [] | no_license | mosser/ood-dojo | 484ae52842522c6f622b9c8a89644b1f98d84d9d | eaddb9c943dc9ee901e3e841673e4902156c3e81 | refs/heads/master | 2020-03-30T13:13:53.645253 | 2018-10-03T21:23:59 | 2018-10-03T21:23:59 | 151,264,520 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 895 | puml | @startuml
skinparam nodesep 60
skinparam ranksep 60
skinparam class {
backgroundColor<<external>> #D3D3D3
}
hide stereotypes
class Portfolio {
~ {static} findByName(String): Project
+ create(String, String): Boolean
- addToPortfolio(Project): Boolean
- isAvailable(String): Boolean
}
class Project {
+ name: String
+ Project(String)
+ save(): Boolean
+ snapshotReport()
}
class Task {
- status: Status
+ start()
+ stop()
+ finish()
+ save(): Boolean
}
enum Status {
READY
IN_PROGRESS
DONE
}
class Manager <<external>>
class Member <<external>>
abstract class Employee <<external>> {
+ employeeId: String
+ check(): Boolean
}
Employee <|-- Manager
Employee <|-- Member
class Report {
- date: Timestamp
}
Project "1" *- "*" Report
Portfolio "1" *-- "*" Project
Project "1" *-- "*" Task
Member "0..1" - "*" Task
Manager "1" - "*" Project
@enduml
|
017dc922e353a345a750698764fe12c8c245cb1c | ef4f9913b31c7ce6c913c8adcced062c0d5db5f9 | /design-patterns/codebase/src/main/resources/uml/bridge/solution-class-diagram.puml | 1426a6020e9d32bf6bc4eb679f13d39db4311ded | [] | no_license | lzbair/OO-Paradigm | 5061211c6af19612c9d8185493898441fb92257b | ddc653bd0fe17807bcd7fd6030bb3e6b05239d99 | refs/heads/master | 2023-06-27T14:54:19.349718 | 2023-02-21T09:53:06 | 2023-02-21T09:53:06 | 238,396,539 | 0 | 1 | null | 2023-06-14T22:49:02 | 2020-02-05T07:55:12 | Java | UTF-8 | PlantUML | false | false | 602 | puml | -@startuml
node Bridge {
abstract class CloudResource{
CloudProvider provider
}
interface CloudProvider{
allocateStorage()
freeStorage()
acquireMachine()
releaseMachine()
}
CloudResource *-right- CloudProvider : > contains one instance
}
package Abstractions {
class MachineCloudResource{}
class StorageCloudResource{}
MachineCloudResource -up-|> CloudResource
StorageCloudResource -up-|> CloudResource
}
package Implementors {
class AWSCloudProvider
class GCPCloudProvider
AWSCloudProvider -up-|> CloudProvider
GCPCloudProvider -up-|> CloudProvider
}
@enduml |
e0fbc9aaef2acd9385f413adb27cc825e6b00cd0 | be809e6091a45ffded8f21b1b48a4e232d12ad90 | /Documentation/Diagrams/Source/NUCLEO-F103RB/Storage_Class_Diagram.plantuml | d3e476ef9589bf215f450a612364b359ee79707d | [
"MIT"
] | permissive | RobertGawron/HardwareDataLogger | 0ac9c585f2e28d8bca6d53e6610d1309b9c65140 | 9f97124f8060b7caf4c65e2e26831bb8a3c6070d | refs/heads/main | 2023-08-17T23:19:34.865717 | 2021-09-26T17:12:50 | 2021-09-26T17:12:50 | 304,281,614 | 1 | 0 | MIT | 2021-09-26T17:12:50 | 2020-10-15T09:52:45 | C | UTF-8 | PlantUML | false | false | 1,379 | plantuml | @startuml
package BusinessLogic {
interface IMeasurementObserver
}
package Device {
interface IStorage {
+void init()
+void deinit()
+void write()
-void serialize()
}
/'
note right of WifiStorage
ESP8266MOD has only Wifi support.
In future it would be possible
to use ESP32 that has also Bloototh.
end note
'/
class WifiStorage {
-login
-password
}
class SDCardStorage {
-fileName
}
class UARTStorage {
}
}
package Driver {
class SDCardDriver {
-void mountFileSystem()
-void unmountFileSystem()
-void openFile()
-void closeFile()
-void sync()
-void writeToFile()
- fileSystemHandler
- logFileHandler
}
class WifiDriver {
-void connect()
-void disconnect()
}
class UARTDriver {
}
interface IUARTDriver {
+void open()
+void close()
+void read()
+void write()
}
}
IMeasurementObserver <|--- SDCardStorage
IMeasurementObserver <|-- UARTStorage
IMeasurementObserver <|-- WifiStorage
IStorage <|-- WifiStorage
IStorage <|-- SDCardStorage
IStorage <|-- UARTStorage
SDCardStorage *-- SDCardDriver
WifiStorage *-- WifiDriver
UARTStorage -- IUARTDriver
WifiDriver -- IUARTDriver
IUARTDriver <|-- UARTDriver
@enduml |
2cbff4fea037e550238ef18bd25232af7f334482 | 625517108615e50180082e3c6d7d1444f643485e | /src/formatters/graph.plantuml | 8b49d954512ec8426db18a370f920208e5653504 | [
"TCL",
"BSD-3-Clause",
"HPND",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"LicenseRef-scancode-openssl",
"MIT",
"LicenseRef-scancode-ssleay-windows",
"ISC",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | Enteee/plantuml-parser | 180c370b3025bb7566bd86576d327364b3d5a425 | 765ac61d0c29c7c8f39310cfa7c385017997aeb8 | refs/heads/master | 2023-07-26T02:00:39.582527 | 2023-03-27T20:49:09 | 2023-03-27T20:49:09 | 177,091,179 | 132 | 33 | Apache-2.0 | 2023-05-21T07:11:53 | 2019-03-22T07:20:31 | TypeScript | UTF-8 | PlantUML | false | false | 1,315 | plantuml | @startuml
/'
' Edges
'/
class has << (E,#FF0000) >> {
}
class extends << (E,#FF0000) >> {
}
note top
Entity --|> Entity
end note
class exposes << (E,#FF0000) >> {
implementation
availability
}
note left
Component -- Interface: ...
Interface -- Component: ...
end note
class consumes << (E,#FF0000) >> {
direction
method
frequency
serviceAccount
criticality
}
note right
Interface ..> Component: direction = Out, ...
Interface <.. Component: direction = In, ...
Component ..> Interface: direction = In, ...
Component <.. Interface: direction = Out, ...
end note
class contains << (E,#FF0000) >> {
}
/'
' Nodes
'/
abstract class UMLElement {
name
description
}
abstract class Entity {
}
Entity --|> UMLElement
Entity -- Entity
(Entity, Entity) .. extends
Entity -- Attribute
(Entity, Attribute) .. has
class Class << (N,#00FF00) >> {
isAbstract
}
Class --|> Entity
class Interface << (N,#00FF00) >> {
}
Interface --|> Entity
Interface -- Component
(Interface, Component) .. exposes
Interface -- Component
(Interface, Component) .. consumes
class Attribute << (N,#00FF00) >> {
type
format
}
Attribute --|> UMLElement
class Component << (N,#00FF00) >> {
}
Component --|> UMLElement
class File << (N,#00FF00) >> {
name
}
(File, UMLElement) .. contains
@enduml
|
cdbe08b7bb75b150ecdaec4fb1330907ef3b0fdc | 98c049efdfebfafc5373897d491271b4370ab9b4 | /docs/SPRINT_2/UC5-Scooter-Delivery_Plan/CD.puml | be71dcdcfe208b2c128a5e8776d73129b556933a | [] | no_license | antoniodanielbf-isep/LAPR3-2020 | 3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3 | 7ee16e8c995aea31c30c858f93e8ebdf1de7617f | refs/heads/main | 2023-05-27T14:42:05.442427 | 2021-06-20T18:09:59 | 2021-06-20T18:09:59 | 378,709,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,200 | puml | @startuml
class LinkedList<String> {
+String removeFirst()
+String removeLast()
}
class ScooterDeliveryPlanningTask {
+ScooterDeliveryPlanningTask()
+run()
+changeStates(Integer courierNIF, Integer scooterID, Integer pharmacyID)
}
class OrdersQueue {
+Map<Integer, List<Integer>> getOrders()
+clearQueue()
}
class PlanningDB {
+LinkedList<String> getCordsByOrders(List<Integer> pharmacyOrders)
+Map<Integer, List<Integer>> getPesosPorEncomenda(List<Integer> pharmacyOrders)
+String getCoordinatesByPharmacyID(Integer pharmacyID)
+Integer getAvailableCourier(Integer pharmacyID)
+Integer getAvailableScooter(Integer, courierNIF, Integer pharmacyID, float payload)
+Float getActualBatteryVehicle(Integer scooterID, Integer courierNIF)
+Map<Integer, String> getCordsOfPharmacysWithAvailableChargingStation(VehicleType type)
+Integer insertDelivery(Integer courierNIF, Integer scooterID, Integer pharmacyID, Float distance, Float time, Float energyCost)
+takeVehicleEnergy(Integer scooterID, Float energyCost, Integer pharmacyID)
+updateOrdersDeliveryID(List<Integer> pharmacyOrders, Integer idDelivery)
+updateOrderStateToDelivered(Integer idDelivery)
}
class DeliveryPlanning {
+Float getTotalPayload(Map<Integer, List<Integer>> pesosPorEcomenda)
+List<String> shortestPath(List<String> cords, String pharmacyCords, VehicleType type, Float actualBatteryWH, Map<Integer, String> allFarmacias, List<String> remainingPath, Float payload, Map<Integer, List<Integer>> pesosPorEncomenda)
+Float pathWeight(List<String> path)
+Float getVelocidadeScooter()
+Float calculateSpentTime(Float distance, Float velocidade)
+Float calculateEnergyCost(List<String> path, Float payload, VehicleType type, Map<Integer, List<Integer>> pesosPorEncomenda)
+List<String> shortestPathScooter(List<String> remainingPath, String actualFarmacia, String startingFarmacia)
+List<String> mostEficientPath(List<String> casasClientes, String startingFarmacia, VehicleType type, float bateriaAtualMW, float payload, Map<String, Float> pesosPorEncomenda, Map<Integer, String> allFarmacias, LinkedList<String> remainingPath)
}
class Print {
+printFileDelivery(List<String> path, Float distance, Float time, Float energyCost, Integer deliveryID, String outputFileName, Float actualBatteryWH, Float payload, Integer scooterID, Integer courierNIF, String pharmacyCords)
+printRemainingDeliveryPath(String outputFileName,String actualFarmacia, List<String> fullRemainingPath, Float gastoEnergeticoRestante, Float distanciaRestante, Float tempoRestante, VehicleType type)
+printPhisics(String outputFileName, VehicleType type)
}
class StopForCharging {
+StopForCharging(List<String> fullRemainingPath, Float gastoEnergeticoRestante, Float tempoRestante, Float distanciaRestante, Integer courierNIF, Integer scooterID, Integer pharmacyID, Integer deliveryID, PlanningDB db)
+run()
}
ScooterDeliveryPlanningTask ..> DeliveryPlanning
ScooterDeliveryPlanningTask ..> OrdersQueue
ScooterDeliveryPlanningTask ..> PlanningDB
ScooterDeliveryPlanningTask ..> LinkedList
ScooterDeliveryPlanningTask ..> Print
ScooterDeliveryPlanningTask ..> StopForCharging
@enduml
|
2144e266df999699d1776438e54e391c8212cba7 | 55dec528f5453a2715feef0444b42672029ea65f | /Diagram/UMLDiagramFinal_code .puml | f766a0072b1820116b151facfdb5899729fc95db | [] | no_license | antonioGamiz666/MineSweeperTQS | f7b90c4c28b0d43f0e326ab6beddb43c79575fea | 3db72eefa5fe7af09b8111b88c9d45438382464a | refs/heads/main | 2023-01-11T22:51:05.601561 | 2020-11-16T22:52:41 | 2020-11-16T22:52:41 | 302,349,578 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,950 | puml | @startuml
Game "1"<--> "1" Player
Game *-- "1" Board
Game "1" <-- "1" Ranking
Board *-- "*" Square
RankingPlayer "0..10" --* Ranking
class Printer
{
-{static} char squareNotSlected
-{static} char squareSelected
-{static} char mine
-{static} char flag
+ showRanking(Ranking)
+ printMenu(): int
+ printDifficultMenu(): int
+ showBoard(Board, String, int)
+ printGameOver()
+ showFarewell(String)
+ printBoardTest(Board)
- printRanking(String, int, int)
- chooseDifficulty()
- printHead(String, int)
- printBoard(Board)
- printLine(int, int, String)
- printMenuChoose()
- errorChoose()
}
class Game{
-{static} int MIN_POINTS
- Player player
- Board board
- boolean gameOver
- boolean gameEnd
- int movX
- int movY
- int flag
- {static} main(String)
+ Game()
+ play(int): int
+ printMenuStart(Printer)
+ newPlayer()
+ getName(): String
- createBoard(int)
- askMovement()
+ askMovementTest()
+ createBoardTest()
}
class Player{
- String name
+ Player(String)
+ getName(): String
+ setname(String)
}
class Board{
- Square[][] listSquares
- int numMines
- int maxX
- int maxY
+ Board(int, int, int)
+ getNumMines():int
+ setNumMines(int)
+ getMaxX(): int
+ setMaxX(int)
+ getMaxY(): int
+ setMaxY(int)
+ createBoard()
+ checkCoordX(int): boolean
+ checkCoordY(int): boolean
+ setSquare(Square, int, int)
+ Square: getSquare(int int)
+ getTypeObject(int, int): String
+ isSelected(int, int): boolean
+ getNumber(int, int): int
+ openSquare(int, int): int
+ setTypeObject(int, int, type)
+ checkFinish(): boolean
+ setFlag(int, int)
+ getFlag(int,int):boolean
- openRecursiveSquare(int, int, int): int
- checkOpenRecursive(int, int): int)
- checkFlag(int, int)
- setSelected(int, int, boolean)
- createRandom(int): int
- createMines()
- setNumbers(int, int)
- createFlag()
- setNumbers(int, int)
- showMineMap()
+ setAllSelecetd()
+ setNumbertest(int, int)
}
class Square{
- String type
- boolean selected
- int number
+ Square()
+ Square(String)
+ isFlag(): boolean
+ setFlag(boolean)
+ isSelected(): boolean
+ setSelected(boolean)
+ getTypeObject(): String
+ setTypeObject(String)
+ setNumber(int)
+ getNumber(): int
- exist(String): boolean
}
class RankingPlayer implements Comparable{
- String name
- int points
+ RankingPlayer(String, int)
+ getName(): String
+ setName(String)
+ getPoints(): int
+ setPoints(int)
+ compareTo(RankingPlayer): int
}
class Ranking{
- list<RankingPlayer> rankingList
+ Ranking()
+ createRankingPlayer(name,points)
+ getRanking(int): RankingPlayer
+ getPoints(int): int
+ getName(int): String
+ numPLayers(): int
}
@enduml |
d537450fdf41582cee379b882cf2137deff55dd2 | 3250399fbceea9a4c11f86b64117bd6e783676e8 | /design-partten/src/adapter/adapter.puml | 0920905a2e0d5fdd8aa71c01c5cf7bfaba51a7dc | [] | no_license | jinelei/rainbow | 172dbbcd19fdc6a399636f41575ef72dc5d8c4ec | a10119d57e939a81a824d159b275e76ccd3232dd | refs/heads/master | 2020-04-10T20:22:16.027419 | 2019-01-19T09:31:04 | 2019-01-19T09:31:04 | 161,265,422 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 787 | puml | @startuml
interface AdventageMediaPlayer {
+void:playVlc()
+void:playMp4()
}
class VlcPlayer {
+void:playVlc()
+void:playMp4()
}
class Mp4Player {
+void:playVlc()
+void:playMp4()
}
AdventageMediaPlayer <.. VlcPlayer
AdventageMediaPlayer <.. Mp4Player
interface MediaPlayer {
+void:play()
}
class MediaAdapter {
-AdventageMediaPlayer:adventageMediaPlayer;
+void:MediaplayAdapter()
+void:play()
}
class AudioPlayer {
-MediaPlayer:mediaPlayer;
+void:AudioplayAdapter()
+void:play()
}
MediaAdapter ..> MediaPlayer: "implements"
AudioPlayer ..> MediaPlayer: "implements"
MediaAdapter --> AdventageMediaPlayer: "use"
AudioPlayer --> MediaAdapter: "use"
class TestDemo {
+void: main()
}
TestDemo --> AudioPlayer: "use"
@enduml |
858e486690140a83ef4de29b476e072168645011 | 112e511928937b8ec60004ca94f1dd996bd9fd1a | /Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.puml | ae4976c062a28b02c854230396ca898bb7d902ec | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter.NetFramework | 2c143b390b1588e38e5967a8b8f1c51bf5487362 | 3c7061398e790c2fc856585fdbf60a18705f11e0 | refs/heads/master | 2023-03-23T09:31:02.071913 | 2021-03-11T05:27:48 | 2021-03-11T05:27:48 | 323,569,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 150 | puml | @startuml
interface IModelDocumentationProvider {
GetDocumentation(member:MemberInfo) : string
GetDocumentation(type:Type) : string
}
@enduml
|
a4f2bad735f7bc92f8d58580f2e039f36afbf6cf | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TaxRateDraft.puml | 0361d33ddfa8123f826693853fe9f5f99ffb0050 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,157 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface TaxRateDraft [[TaxRateDraft.svg]] {
name: String
amount: Double
includedInPrice: Boolean
country: String
state: String
subRates: [[SubRate.svg List<SubRate>]]
key: String
}
interface TaxCategoryDraft [[TaxCategoryDraft.svg]] {
name: String
description: String
rates: [[TaxRateDraft.svg List<TaxRateDraft>]]
key: String
}
interface TaxCategoryAddTaxRateAction [[TaxCategoryAddTaxRateAction.svg]] {
action: String
taxRate: [[TaxRateDraft.svg TaxRateDraft]]
}
interface TaxCategoryReplaceTaxRateAction [[TaxCategoryReplaceTaxRateAction.svg]] {
action: String
taxRateId: String
taxRateKey: String
taxRate: [[TaxRateDraft.svg TaxRateDraft]]
}
TaxRateDraft --> TaxCategoryDraft #green;text:green : "rates"
TaxRateDraft --> TaxCategoryAddTaxRateAction #green;text:green : "taxRate"
TaxRateDraft --> TaxCategoryReplaceTaxRateAction #green;text:green : "taxRate"
@enduml
|
ce21f4adb225fa9e7db039d5ec5ee3403ea1b069 | 4e66b60562009e54e3249595d08d88573c1d7fba | /test/PlantUmlClassDiagramGeneratorTest/uml/nullableType.puml | 35e806fe4e42aaeda1377389a278398a9b764c48 | [
"MIT"
] | permissive | pierre3/PlantUmlClassDiagramGenerator | a17a7ec5e3b547b0a9d5afee1d74436c6d602782 | 00bd84d543a14f05c95857426060e677c4668cc8 | refs/heads/master | 2023-07-06T01:15:15.436366 | 2023-05-31T13:39:56 | 2023-06-02T10:24:02 | 41,860,665 | 598 | 123 | MIT | 2023-08-20T06:56:51 | 2015-09-03T13:17:42 | C# | UTF-8 | PlantUML | false | false | 69 | puml | @startuml
class NullableType1 {
+ NullableLong : long?
}
@enduml
|
ac5f4bbb4f023b49c85612b8dd52567e7c4ba8b8 | 49c85b6a0dee63e789088d9c1e954519060a0c3d | /docs/classes.puml | 9aa88805f9a14ef107c125909c5fd59559472911 | [
"Unlicense"
] | permissive | WebDaD/botd-server | 5a88da2401dfa3bb3fe2109c79bcd135d9059569 | 58c702621c47ce90ee9d8114442e1c812a8b94f4 | refs/heads/master | 2021-09-03T19:51:00.178466 | 2018-01-11T14:03:57 | 2018-01-11T14:04:01 | 117,108,126 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 467 | puml | @startuml
class database {
- Array<entry> entries
- String file
- uuidv4 uuid
+ {method} void list(callback: function)
+ {method} void sources(callback: function)
+ {method} void get(String: id, callback: function)
+ {method} void add(entry: entry, callback: function)
+ {method} void update(String: id, entry: entry, callback: function)
+ {method} void delete(String: id, callback: function)
- {method} void saveFile(callback: function)
}
@enduml |
ddafab3286f3cb6fc617f16c3b232d7615bfbcd5 | e5e0d04a44fe67064105c32404e11f52d66ce464 | /docs/plantuml/StorageComponent.puml | 03895259c80e59d546a1f28a09cae433036782f7 | [] | no_license | durianpancakes/tp | 19902f0c344eca4544cda3caabb85c70d174853a | 7f9ff12f6d81a47bc208e64dcbcecb6dbf8687a5 | refs/heads/master | 2023-01-07T01:13:07.145901 | 2020-11-08T13:10:16 | 2020-11-08T13:10:16 | 299,612,457 | 0 | 0 | null | 2020-09-29T12:36:16 | 2020-09-29T12:36:15 | null | UTF-8 | PlantUML | false | false | 2,030 | puml | @startuml
skinparam Shadowing false
skinparam classBackgroundColor Tan
skinparam MinClassWidth 120
package storage <<rectangle>> {
abstract class StorageManager {
+ StorageManager(:String)
- createDataFile():boolean
}
class EventStorageManager extends StorageManager {
+ EventStorageManager(:String)
+ saveData(:ArrayList<Event>)
+ loadData():EventParameter
- separateEventsIntoList(:ArrayList<Event>):EventParameter
}
class EventListDecoder {
+ EventListDecoder()
+ decodeEventList(:ArrayList<String>):ArrayList<Event>
- decodeEventFromString(:String):Event
- parseCca(:String[]):EventCca
- parseClass(:String[]):EventClass
- parseTest(:String[]):EventTest
- parseTuition(:String[]):EventTuition
- isValidParams(:String, :String, :String)
- isValidTuition(:String, :String, :String, :String)
}
class EventListEncoder {
+ EventListEncoder()
+ encodeEventList(:ArrayList<Event>):ArrayList<String>
- encodeEventToString(:Event):String
- isValidParams(:String, :String, :String)
}
EventStorageManager --> EventListDecoder
EventStorageManager --> EventListEncoder
class QuizStorageManager extends StorageManager {
+ QuizStorageManager(:String)
+ saveData(:ArrayList<Quiz>, :String)
+ loadData():ArrayList<ArrayList<Quiz>
}
class QuizListDecoder {
+ decodeQuizList(:ArrayList<String>):ArrayList<Quiz>
- decodeQuizFromString(:String):Quiz
}
class QuizListEncoder {
+ encodeQuizList(:ArrayList<Quiz>):ArrayList<String>
}
QuizStorageManager --> QuizListDecoder
QuizStorageManager --> QuizListEncoder
class ConfigStorageManager extends StorageManager {
}
class ConfigDecoder {
}
class ConfigEncoder {
}
ConfigStorageManager --> ConfigDecoder
ConfigStorageManager --> ConfigEncoder
}
hide circle
hide members
@enduml |
28c4f22a50e964e1ad0d7aacd02af813b0439f11 | 749c8b98011fc0e6b3e83fad57acc18803013779 | /img/diagram-with-observation.puml | 26a17c789ae38df8fd05965263c65d302d78966f | [] | no_license | ontolex/frequency-attestation-corpus-information | 4c60d6a80ff4977044b8fbca69b9631c6276d217 | 9f2efad4d5e6e6b606ebbe620dfd316d924463ae | refs/heads/master | 2023-07-08T23:25:07.849558 | 2023-07-06T12:55:03 | 2023-07-06T12:55:03 | 252,785,043 | 3 | 8 | null | 2023-06-26T09:46:49 | 2020-04-03T16:32:19 | HTML | UTF-8 | PlantUML | false | false | 809 | puml | @startuml
class Observation {
str: dc:description
Literal: rdf:value
}
Observation -> Corpus: corpus
Collocation -up-|> Observation
Similarity -up-|> Observation
CorpusFrequency -up-|> Observation
Attestation -up-|> Observation
Embedding -up-|> Observation
Collocation o-down- Observable
Embedding -down-> Attestation: attestationEmbedding
Observable -> Embedding: embedding
Observable -> CorpusFrequency: frequency
Observable -> Attestation: attestation sub citation
class Embedding {
int: dc:extent
}
FixedSizeVector -up-|> Embedding
BagOfWords -up-|> Embedding
TimeSeries -up-|> Embedding
Similarity o-down- Embedding
class CorpusFrequency {
}
class Attestation {
str: gloss
}
class Corpus {
int: total
}
Collocation -down-> Observable: head
Collocation -down-|> Observable
@enduml
|
a944982a8b535a5671389db90f56f6bd365c7971 | 84e20402a90eab514ea6e1cbec5cb23a0bf24c58 | /app/src/main/java/com/example/appkru/model/SP/SP.plantuml | 2f0702a263e740fdd418588837bc63f1ec0f4e69 | [] | no_license | kholishulil97/AppKru | 0539b356237155525c4f04b277941872c93fb530 | 118db86ebddaabd207ee7d953a36a707e0c3d3ff | refs/heads/main | 2023-03-30T21:17:10.172868 | 2021-04-04T13:40:28 | 2021-04-04T13:40:28 | 354,548,055 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,817 | plantuml | @startuml
title __SP's Class Diagram__\n
namespace com.example.appkru {
namespace model.SP {
class com.example.appkru.model.SP.DatumSP {
- dinasId : String
- kelas : String
- kode : String
- mesin : String
- nama : String
- namaPengatur : String
- nipNama : String
- nipNamaMengganti : String
- nopol : String
- posisi : String
- posisiPengatur : String
- tanggalPanjang : String
- tanggalPendek : String
- trayek : String
+ getDinasId()
+ getKelas()
+ getKode()
+ getMesin()
+ getNama()
+ getNamaPengatur()
+ getNipNama()
+ getNipNamaMengganti()
+ getNopol()
+ getPosisi()
+ getPosisiPengatur()
+ getTanggalPanjang()
+ getTanggalPendek()
+ getTrayek()
+ setDinasId()
+ setKelas()
+ setKode()
+ setMesin()
+ setNama()
+ setNamaPengatur()
+ setNipNama()
+ setNipNamaMengganti()
+ setNopol()
+ setPosisi()
+ setPosisiPengatur()
+ setTanggalPanjang()
+ setTanggalPendek()
+ setTrayek()
}
}
}
namespace com.example.appkru {
namespace model.SP {
class com.example.appkru.model.SP.SP {
- data : List<DatumSP>
- status : Boolean
+ getData()
+ getStatus()
+ setData()
+ setStatus()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
ca013a1761c32903c251d20e79a88334a345068d | 2658a42eb6bbcc140cae19c1120864277f893b2f | /documentation/src/orchid/resources/assets/diagrams/set.puml | 0087f02ff2cc6450c6ae90cb6cce21a586ab92d9 | [
"Apache-2.0"
] | permissive | tuProlog/2p-kt | 0935dbeb88272f79df1ebbd2339767bccc8ecfa4 | 6510ea0414985b708dd492ee240727f2e261176c | refs/heads/master | 2023-08-17T18:41:12.310798 | 2023-07-19T10:34:16 | 2023-07-19T13:13:27 | 230,784,338 | 84 | 15 | Apache-2.0 | 2023-09-13T22:49:25 | 2019-12-29T17:51:34 | Kotlin | UTF-8 | PlantUML | false | false | 643 | puml | @startuml
left to right direction
skinparam shadowing false
interface Struct
interface Atom
interface Empty {
+ {static} list(): EmptyList
+ {static} set(): EmptySet
}
interface EmptySet {
+ {static} invoke(): EmptySet
}
interface Set {
+ unfoldedArray: Array<Term>
+ unfoldedList: List<Term>
+ unfoldedSequence: Sequence<Term>
+ toArray(): Array<Term>
+ toList(): List<Term>
+ toSequence(): Sequence<Term>
+ {static} empty(): Set
+ {static} of(**varargs** items: Term): Set
+ {static} of(items: Iterable<Term>): Set
}
Struct <|-- Atom
Struct <|-- Set
Atom <|-- Empty
Empty <|-- EmptySet
Set <|-- EmptySet
@enduml |
739461072c5ec51410597463c5d6e388b2d17842 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetReturnShipmentStateAction.puml | 04d5dbd276cb9c5508a44a72a0b80ce2c061dca2 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 583 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface StagedOrderSetReturnShipmentStateAction [[StagedOrderSetReturnShipmentStateAction.svg]] extends StagedOrderUpdateAction {
action: String
returnItemId: String
returnItemKey: String
shipmentState: [[ReturnShipmentState.svg ReturnShipmentState]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
12b729f591871f22aed06eb21bfb4675de313464 | 065da8d391be577d7fc71aa024ab81e35c39618b | /PlantUml/Dolphin.Object/ComparisonOptions.puml | 6992f61b4d15e7c14702a441528b5630768b4cf4 | [] | no_license | leoshiang/Dolphin.CSharp | 1fc921ea04a4a721b49557748f7ca15f89f9e414 | 61438432f088c6b380356afdcba4c627985fa152 | refs/heads/master | 2023-04-17T03:59:19.871766 | 2023-03-30T02:03:42 | 2023-03-30T02:03:42 | 204,225,824 | 0 | 0 | null | 2022-12-08T04:32:20 | 2019-08-25T00:02:55 | C# | UTF-8 | PlantUML | false | false | 616 | puml | @startuml
class ComparisonOptions {
+ ComparisonOptions()
+ ComparisonOptions(propertyNames:IEnumerable<string>)
+ Include(propertyName:string) : ComparisonOptions
+ Include(propertyNames:IEnumerable<string>) : ComparisonOptions
+ Include(func:Func<string, bool>) : ComparisonOptions
+ Exclude(propertyName:string) : ComparisonOptions
+ Exclude(propertyNames:IEnumerable<string>) : ComparisonOptions
+ Exclude(func:Func<string, bool>) : ComparisonOptions
}
class "HashSet`1"<T> {
}
IComparisonOptions <|-- ComparisonOptions
ComparisonOptions o-> "Options<string>" "HashSet`1"
@enduml
|
7f8e84bd4cba6247e096ba45b51e06829f06f605 | e4693a606f7392151681abc4f6c5f0ba9f252fab | /de.gematik.ti.cardreader.provider.pcsc/doc/plantuml/PCSCCRP/entities.plantuml | c95507203e23de63cf008a747378b3cdcfabe9b5 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-PCSC | 52683986e5e10589a4b4605c008104a3ddc9e144 | 82e85b22ee81fab33e81171f5b70656f9750e1c4 | refs/heads/master | 2022-01-12T16:05:18.890812 | 2022-01-07T07:24:35 | 2022-01-07T07:24:35 | 214,092,461 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,445 | plantuml | @startuml
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.CardReader {
{static} - LOG : Logger
- cardTerminal : CardTerminal
+ CardReader()
+ connect()
+ connect()
+ getCardTerminal()
+ getName()
+ initialize()
+ isCardPresent()
+ isInitialized()
+ toString()
+ waitForCardAbsent()
+ waitForCardPresent()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard {
{static} - LOG : Logger
- javaxCard : Card
+ PcscCard()
+ disconnect()
+ getATR()
+ getProtocol()
+ openBasicChannel()
+ openLogicalChannel()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel {
{static} - CARDREADER_BUFFER : String
{static} - CARD_MAXAPDUBUFFERSIZE : String
{static} - CARD_MAXRESPAPDUBUFFERSIZE : String
{static} - LOG : Logger
{static} - MINIMAL_ALLOCATE : int
- allocateLength : int
{static} - bufferSizeConfig : Map<String, Integer>
- javaxCardChannel : CardChannel
+ PcscCardChannel()
+ close()
+ getCard()
+ getChannelNumber()
+ getMaxMessageLength()
+ getMaxResponseLength()
+ isExtendedLengthSupported()
+ setAllocateLength()
+ transmit()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCrpRuntimeException {
{static} - serialVersionUID : long
+ PcscCrpRuntimeException()
}
}
de.gematik.ti.cardreader.provider.pcsc.entities.CardReader .up.|> de.gematik.ti.cardreader.provider.api.ICardReader
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard .up.|> de.gematik.ti.cardreader.provider.api.card.ICard
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel .up.|> de.gematik.ti.cardreader.provider.api.card.ICardChannel
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel o-- de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard : pcscCard
@enduml
|
e35a63b92c908a50cb50121689aad95a61b0eea7 | 195aa0314b879b429031cb229d575c2774d8560d | /uml/cd_warehouse.puml | 8f67a34f78562dd7e89e85afaa3c7170115480b6 | [] | no_license | da0hn/tdd-sandbox | c030bff13bd8a05cb588959dd8b08c9db5bd45de | 3d00d05dc52f8949ee0c0ff0bf8bc2a4e66f8ed8 | refs/heads/master | 2023-08-23T21:58:26.672224 | 2021-10-12T20:48:31 | 2021-10-12T20:49:05 | 415,622,667 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 473 | puml | @startuml
!theme reddress-darkorange
class Catalogue {
+ search(title, artist)
}
class Warehouse {
+ receive(label, batch)
}
class CD {
- title
- artist
- price
+ buy(quantity)
+ getStockCount()
}
class StockItem
class Batch
class Label
left to right direction
Catalogue "1" <-down- Warehouse
Catalogue --left--> "*" CD
StockItem "*" <-down-> "1" CD
Warehouse --> "*" StockItem
CD "*" <---> "1" Label
Batch --> "1..*" StockItem
@enduml
|
576eb4d949c4ef73af9f7ee3faef111135b47df7 | 61f77755f3ca65fa0a0dfbbdc51137e01ded03fc | /design_model/src/main/java/example/designpattern/behavioral/interpreter/includecontext/interpreter pattern.puml | 820019859c1e79a7f2b63c14784d1b1ae9c206a7 | [] | no_license | lyszhen3/myWeb | 670e02a585ea3193f6c388b9cea37969a94792dc | c1543ec5f48d84e6c6481a95e54b84f04654b323 | refs/heads/master | 2023-07-11T02:29:33.530130 | 2019-02-25T01:39:29 | 2019-02-25T01:39:29 | 78,835,228 | 0 | 1 | null | 2022-12-16T04:38:41 | 2017-01-13T09:31:45 | Java | UTF-8 | PlantUML | false | false | 88 | puml | @startuml
Abstract class Node{
+{abstract}void interprete(Context context);
}
@enduml |
1e9203439c3e1786306036dcf586dfd0532ff3e5 | 58f5766244826918a3cf79312f861f76c5aa6f7d | /Documents/uml/Bindings/EncodingInfoToStringConverter.puml | 096bc6f50b72ec4de47182414176ec432cea4f6c | [
"MIT"
] | permissive | BillKrat/CsvEditSharp | 3835aa9d7955a33830be47b044d3c05763c68dff | a91334a8aa1b08c4f7fe38116892b088e92d4da4 | refs/heads/master | 2022-01-28T15:31:06.719793 | 2019-07-28T11:39:25 | 2019-07-28T11:39:25 | 198,216,226 | 0 | 1 | MIT | 2019-07-22T12:10:45 | 2019-07-22T12:10:44 | null | UTF-8 | PlantUML | false | false | 299 | puml | @startuml
class EncodingInfoToStringConverter {
+ Convert(value:object, targetType:Type, parameter:object, culture:CultureInfo) : object
+ ConvertBack(value:object, targetType:Type, parameter:object, culture:CultureInfo) : object
}
IValueConverter <|-- EncodingInfoToStringConverter
@enduml
|
f5ad2c1ee388dec495e043abb53d3597545154c6 | 5182c071d0316eff5aad407dff1872e3ef8f0c10 | /readmeFiles/CarCountBelowZeroException.iuml | 8b77ab23a9612fecad44b8a23eb8aec2b0265d1d | [
"Apache-2.0"
] | permissive | fh-erfurt/1234Altwagen | 99bdd696c68b32fb20577ab5b6b411d65853eaae | 3a90aa709cbfb481a74cdaa94ea16c7579c9c7a0 | refs/heads/master | 2020-08-29T12:27:59.230959 | 2020-08-03T17:08:57 | 2020-08-03T17:08:57 | 218,030,883 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 144 | iuml | @startuml
class CarCountBelowZeroException {
-location: Location
+CarCountBelowZeroException(Location)
+getLocation(): Location
}
@enduml
|
76e970c5aaf8fc39cefa4633719e601568f302d8 | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/pizzeria0.plantuml | 328b264ec9d48ec79e96eb27c81710d0d8e8a226 | [] | no_license | jmbruel/InnopolisDesignPatterns | 62c5f1df870883cd44245d6459243c83b96d0995 | a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e | refs/heads/master | 2021-02-04T20:34:22.378185 | 2020-11-16T17:40:28 | 2020-11-16T17:40:28 | 243,707,157 | 0 | 7 | null | 2020-10-23T08:58:33 | 2020-02-28T07:49:59 | JavaScript | UTF-8 | PlantUML | false | false | 532 | plantuml | @startuml
' definitions
' -----------
abstract Pizza
class SimpleFabriqueDePizzas {
SimpleFabriqueDePizzas()
Pizze creerPizza(String)
}
class Pizzeria {
Pizzeria(SimpleFabriqueDePizzas)
Pizza commanderPizza(String)
}
Pizzeria ..> Pizza
Pizzeria --> "fabrique" SimpleFabriqueDePizzas
Pizza <|-- PizzaFruitsDeMer
' Pizza:
Pizza : Pizza()
Pizza : void preparer()
Pizza : void cuire()
Pizza : void couper()
Pizza : void emballer()
Pizza <|-- PizzaVegetarienne
Pizza <|-- PizzaFromage
Pizza <|-- PizzaPoivrons
@enduml
|
2941854e597aa454e3601c81375775455b4d8900 | 098181517c5e0f4ff3d967aba6c792d8e91318ef | /src/类图.puml | 9498a8607acf0226613b75baabfac8a9add60ded | [] | no_license | tangzhanming/is_analysis_page | bd03b043532415eb5901e100b7de72cd73c3649a | e6492e53d91f0b03df80c73b7bb2c39ba315bb8b | refs/heads/master | 2022-09-08T19:16:07.535794 | 2020-05-26T02:08:17 | 2020-05-26T02:08:17 | 266,833,236 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,055 | puml | @startuml
title 基于GitHub的实验管理平台--类图
class users {
<b>user_id</b> (用户ID)
name (用户真实姓名)
github_username (用户GitHub账号)
update_date (用户GitHub账号修改日期)
password (用户密码)
disable (用户是否禁用)
}
class teachers{
<b>teacher_id</b> (老师工号)
department (老师所属部门)
}
class students{
<b>student_id</b> (学号)
class (班级)
result_sum(成绩汇总)
web_sum (网站正确与否汇总)
}
users <|- students
users <|-- teachers
class classs {
<b>class_id</b> (实验编号)
class_name (班级名称)
}
students "1" -- "1" classs
teachers "1" -- "n" classs
class grades {
<b>student_id</b> (学号)
<b>test_id</b> (实验编号)
result (分数)
memo (评价)
update_date (评改日期)
}
class tests {
<b>test_id</b> (实验编号)
title (实验名称)
}
students "1" -- "n" grades
tests "1" -- "n" grades
@enduml |
502dd934e4645dcf42c9e86a2b8d05fc124826de | 72615410067f4ab31c614f6a611cc7e8ed6525a4 | /images/testing_network_topology.plantuml | 47921f170e92989515060a7ac59777ae360c5b35 | [] | no_license | omeranson/omeranson.github.io | bfc4ba3c560d9c99655b2d1bbc6393c532ee8e91 | 4379186f5494253a8816c2c94b293db76bded24b | refs/heads/master | 2022-06-18T15:39:40.426033 | 2022-06-12T09:30:41 | 2022-06-12T09:30:41 | 51,499,618 | 0 | 0 | null | 2017-02-22T23:06:07 | 2016-02-11T07:13:02 | HTML | UTF-8 | PlantUML | false | false | 398 | plantuml | @startuml
Topology "1" -> "1" Network
Topology "1" --> "*" Subnet
Topology "1" --> "*" Router
Router "1" - "*" Subnet
note bottom of Router: Router connects\nbetween subnets.
Subnet "1" --> "*" Port
Port "1" -> "1" LogicalPortTap
LogicalPortTap "1" -> "1" pytun.TunTapDevice
note left of pytun.TunTapDevice: Manages the TAP interface
class Subnet {
--
int id
}
class Port {
--
int id
}
@enduml
|
dec1928a4cb2ff113fb2e2ec2fbadb9f6bd52d6b | c60a8fb67fedcbae08755d8125d97468a8aca24d | /Projet de UML Reverse/documents/diagrammes_architecture/DiagrammesVersion trash/GestionnaireDeFichiers/model.puml | 265bacabf1f1f21fce707e8404fb52c448b466cb | [
"Apache-2.0"
] | permissive | BelkhousNabil/Projets-Informatiques | 6be114f6a8dbcf978ef67daffb1394ee023255cf | 47ffd6526bb66ae263c34725fe2b515b751127bb | refs/heads/master | 2021-01-17T07:12:08.050466 | 2017-02-26T17:03:56 | 2017-02-26T17:03:56 | 54,788,129 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 894 | puml | @startuml
class FileManager {
- workspace: java.io.File
+ addProject(String name): ProjectDir
+ addProject(ProjectDir prj): void
+ getProject(String name): ProjectDir
+ getProjects(): List<ProjectDir>
+ hasProject(String name): boolean
+ removeProject(String name): void
}
class ProjectDir {
- dir: java.io.File
+ addDiagram(DiagramType type, String name): DiagramDir
+ getDiagrams(DiagramType type): List<DiagramDir>
+ removeDiagram(DiagramType type, String name): void
}
enum DiagramType {
+ CLASS
+ SEQUENCE
+ USECASE
}
class java.util.HashMap<DiagramType, List<DiagramDir>>
class DiagramDir {
- dir: java.io.File
+ getDefaultStyle(String puml): java.io.File
+ getPlantUML(): List<java.io.File>
}
FileManager "1" *--> "*" ProjectDir: "- projects"
ProjectDir .> DiagramType
ProjectDir "1" *--> "1" java.util.HashMap: "- diagrams"
java.util.HashMap -> DiagramDir
@enduml
|
385a51ceb73a0fd18b4c6e6bc62843761543d442 | c815f9c82c1400f76243750cd0ec609d217b9943 | /chain/etc/chain.urm.puml | 21365765d0e356a0d7756acb4e89b4466bd49719 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 1,597 | puml | @startuml
package com.iluwatar.chain {
class OrcSoldier {
+ OrcSoldier(handler : RequestHandler)
+ handleRequest(req : Request)
+ toString() : String
}
class OrcCommander {
+ OrcCommander(handler : RequestHandler)
+ handleRequest(req : Request)
+ toString() : String
}
class OrcKing {
~ chain : RequestHandler
+ OrcKing()
- buildChain()
+ makeRequest(req : Request)
}
class Request {
- handled : boolean
- requestDescription : String
- requestType : RequestType
+ Request(requestType : RequestType, requestDescription : String)
+ getRequestDescription() : String
+ getRequestType() : RequestType
+ isHandled() : boolean
+ markHandled()
+ toString() : String
}
class App {
+ App()
+ main(args : String[]) {static}
}
abstract class RequestHandler {
- next : RequestHandler
+ RequestHandler(next : RequestHandler)
+ handleRequest(req : Request)
# printHandling(req : Request)
+ toString() : String {abstract}
}
class OrcOfficer {
+ OrcOfficer(handler : RequestHandler)
+ handleRequest(req : Request)
+ toString() : String
}
enum RequestType {
+ COLLECT_TAX {static}
+ DEFEND_CASTLE {static}
+ TORTURE_PRISONER {static}
+ valueOf(name : String) : RequestType {static}
+ values() : RequestType[] {static}
}
}
RequestHandler --> "-next" RequestHandler
Request --> "-requestType" RequestType
OrcKing --> "-chain" RequestHandler
OrcSoldier --|> RequestHandler
OrcCommander --|> RequestHandler
OrcOfficer --|> RequestHandler
@enduml |
eae905ef395ff9c7b5f84f4e923c64bec01f8d91 | 568565f45f162e249ddc2cd84c367b8c8b1030ea | /calcite_uml/class/relOptRule_class.puml | ae171a52287ee86de8f5d627eb4aea12151128cf | [] | no_license | YSMull/calcite-tutorial | 36b908954435b9524f1db20e6b740974fd6df934 | 867b90abd775f3291a5f9cab692200eca6a1c28b | refs/heads/master | 2022-11-08T21:51:29.514937 | 2020-06-24T08:28:55 | 2020-06-24T08:28:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,717 | puml | @startuml
abstract class RelOptRule {
+abstract void onMatch(RelOptRuleCall call);
}
note top of RelOptRule
将一个表达式转换到另一个
它拥有RelOptRuleOperand列表,用于
决定rule是否可用于树的特定部分
优化器决定哪些rule可以应用,然后
调用每个rule的onMatch方法
<color red>onMatch方法</color>在该方法被调用的时候,
RelOptRuleCall包含匹配这个rule的operands的关系表达式集合
call.rels[0]是根表达式。通常,rule会检查node是否合法匹配
创建一个新的表达式,然后回调RelOptRuleCall#transformTo
注册这个表达式。
end note
class RelOptRuleOperand
note top of RelOptRuleOperand
Operand决定一个RelOptRule是否可以用于特定的表达式
end note
RelOptRule *--> RelOptRuleOperand
abstract class ConverterRule extends RelOptRule {
+ ConverterRule(Class<? extends RelNode> clazz, RelTrait in,RelTrait out, String descriptionPrefix)
}
note right of ConverterRule
将一个calling convention转换到另一个
而不改变语义的rule
<color red>构造函数</color>:clazz是考虑转换的关系表达式的类型
in是考虑转换的关系表达式的trait
out是被转成的trait
end note
class EnumerableSortRule extends ConverterRule {
}
note bottom of EnumerableSortRule
将Sort转换成一个EnumerableSort
end note
abstract class RelOptRuleCall {
}
note top of RelOptRuleCall
带有一组关系表达式作为参数的RelOptRule的调用
end note
class VolcanoRuleCall extends RelOptRuleCall
class HepRuleCall extends RelOptRuleCall
RelOptRule --> RelOptRuleCall:调用
@enduml |
22247e0ea5274f9eb18d2256340ab64c22fbe55a | c28cc303502e0038d6cc3632ca21c2db3f1f60d9 | /uml/_app_architecture.puml | 447250df66ee51f9110d0aec31163ae183859312 | [] | no_license | jesusdmedinac/MovieApp | d03f2b0da98b10c492d636d08f11ba0fdb5e55ec | 2dd405aedc04c2598273d722d5ef18bcb758f18b | refs/heads/master | 2023-05-14T09:44:53.344323 | 2021-05-26T10:43:46 | 2021-05-26T10:43:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,467 | puml | @startuml
left to right direction
package com.backbase.assignment {
package util {
interface Mapper <<I>>, <<O>> {
+ map(I): O
}
interface ListMapper <<I>>, <<O>> implements Mapper {
+ map(List<I>): List<O>
}
class ListMapperImpl <<I>>, <<O>> implements ListMapper {
+ ListMapperImpl(Mapper<I, O>)
}
}
package presentation.mapper {
interface DomainMovieToUIMovie implements Mapper {
+ map(DomainMovie): UIMovie
}
class DomainMovieToUIMovieImpl implements DomainMovieToUIMovie
}
package presentation {
package ui {
class MainActivity
}
package viewmodel {
class MovieViewModel {
+ retrieveMovies()
+ getNowPlayingMovies(): StateFlow<List<UIMovie>>
+ getMostPopularMovies(): StateFlow<List<UIMovie>>
+ getMovieById(String): UIMovie
}
MovieViewModel -- DomainMovieToUIMovie
}
abstract class UIMovie {
+ posterImage: String
}
class UINowPlayingMovie extends UIMovie
class UIMostPopularMovie extends UIMovie {
+ title: String
+ rating: Int
+ duration: String
+ releaseDate: Date
}
class UIDetailedMovie extends UIMostPopularMovie {
+ overview: String
+ genres: List<UIGenre>
}
enum UIGenre {
Action
Adventure
Animation
Comedy
Crime
Documentary
Drama
Family
Fantasy
History
Horror
Music
Mystery
Romance
ScienceFiction
TVMovie
Thriller
War
Western
}
UIDetailedMovie *-- UIGenre
MainActivity -- MovieViewModel
MovieViewModel -- UIMovie
}
package domain.mapper {
interface DataMovieToDomainMovie implements Mapper {
+ map(DataMovie): DomainMovie
}
class DataMovieToDomainMovieImpl implements DataMovieToDomainMovie
}
package domain {
package usecase {
interface RetrieveMoviesUseCase {
+ invoke()
}
class RetrieveMoviesUseCaseImpl implements RetrieveMoviesUseCase
interface GetNowPlayingMoviesUseCase {
+ invoke(): Flow<List<DomainNowPlayingMovie>>
}
class GetNowPlayingMoviesUseCaseImpl implements GetNowPlayingMoviesUseCase
interface GetMostPopularMoviesUseCase {
+ invoke(): Flow<List<DomainMostPopularMovie>>
}
class GetMostPopularMoviesUseCaseImpl implements GetMostPopularMoviesUseCase
interface GetMovieByIdUseCase {
+ invoke(String): DomainDetailedMovie
}
class GetMovieByIdUseCaseImpl implements GetMovieByIdUseCase
MovieViewModel -- RetrieveMoviesUseCase
MovieViewModel -- GetNowPlayingMoviesUseCase
MovieViewModel -- GetMostPopularMoviesUseCase
MovieViewModel -- GetMovieByIdUseCase
DataMovieToDomainMovie -- RetrieveMoviesUseCaseImpl
DataMovieToDomainMovie -- GetNowPlayingMoviesUseCaseImpl
DataMovieToDomainMovie -- GetMostPopularMoviesUseCaseImpl
DataMovieToDomainMovie -- GetMovieByIdUseCaseImpl
}
package repository {
interface MovieRepository {
+ retrieveMovies()
+ getNowPlayingMovies(): Flow<List<DomainNowPlayingMovie>>
+ getMostPopularMovies(): Flow<List<DomainMostPopularMovie>>
+ getMovieById(String): DomainDetailedMovie
}
class MovieRepositoryImpl implements MovieRepository
MovieRepository -- RetrieveMoviesUseCaseImpl
MovieRepository -- GetNowPlayingMoviesUseCaseImpl
MovieRepository -- GetMostPopularMoviesUseCaseImpl
MovieRepository -- GetMovieByIdUseCaseImpl
MovieRepository -R- DomainNowPlayingMovie
MovieRepository -R- DomainMostPopularMovie
MovieRepository -R- DomainDetailedMovie
}
abstract class DomainMovie {
+ posterImage: String
}
class DomainNowPlayingMovie extends DomainMovie
class DomainMostPopularMovie extends DomainMovie {
+ title: String
+ rating: Int
+ duration: Int
+ releaseDate: Date
}
class DomainDetailedMovie extends DomainMostPopularMovie {
+ overview: String
+ genres: List<DomainGenre>
}
enum DomainGenre {
Action
Adventure
Animation
Comedy
Crime
Documentary
Drama
Family
Fantasy
History
Horror
Music
Mystery
Romance
ScienceFiction
TVMovie
Thriller
War
Western
}
DomainDetailedMovie *-- DomainGenre
}
package data {
package local {
interface MovieLocalDataSource {
+ getNowPlayingMovies(): Flow<List<DataMovie>>
+ getMostPopularMovies(): Flow<List<DataMovie>>
+ getMovieById(String): DataMovie
}
}
package remote {
interface MovieRemoteDataSource {
+ getNowPlayingMovies(): Flow<List<DataMovie>>
+ getMostPopularMovies(): Flow<List<DataMovie>>
+ getMovieById(String): DataMovie
}
}
MovieRepositoryImpl -- MovieLocalDataSource
MovieRepositoryImpl -- MovieRemoteDataSource
class DataMovie {
+ posterImage: String?
+ title: String?
+ rating: Float?
+ duration: Int?
+ releaseDate: Date?
+ overview: String?
+ genres: List<DataGenre>
}
class DataGenre {
+ id: Int
+ name: String
}
DataMovie *-- DataGenre
MovieRemoteDataSource -- DataMovie
}
}
@enduml |
1f6e9a90b87207021230eac7e6b7389d8eb7e85c | e84cdf400a0c388fb619ee59d2e9b7088c68a42e | /Lab submits/60030031/computer/computer.puml | 68713d65e7aa1c038579f7664c5f05bacab81ec3 | [] | no_license | 03376808-OOAD/OOAD-WEEK09 | d26687e13b991490dd87ed39c672401b613de35d | 5d1067a52587f950b5abf6e89de8a951f752266d | refs/heads/master | 2022-09-08T11:20:50.411169 | 2020-06-01T09:05:32 | 2020-06-01T09:05:32 | 69,578,305 | 0 | 10 | null | 2020-06-01T09:05:33 | 2016-09-29T14:57:50 | null | UTF-8 | PlantUML | false | false | 622 | puml | @startuml
skinparam ClassAttributeIconSize 0
class Computer{
-CPU
+Monitor
+Printer
+Scanner
+Keyboard
Compute()
}
class Monitor{
+Size
-weight
+color
+Brand
Show screen()
}
class Mouse{
+Brand
-weight
+color
Move a cursor()
}
class Printer{
+Brand
+Size
-weight
prints onto paper()
}
class Scanner{
+Brand
+Color
+Size
Scan()
}
class Keyboard{
+color
+Size
-weight
put information into a computer()
}
Computer o-- Monitor
Computer o-- Mouse
Computer o-- Printer
Computer o-- Scanner
Computer o-- Keyboard
@enduml |
0cd1754d9a978dc21221a5945a8b2b9b1663fc97 | 3f0f1beb0020ef10c82e25f24f5ba1e6125d09e2 | /src/zhw/designpattern/builder/builder.puml | 14fbf1f548264b49e0a8ecb033745c1aab179822 | [] | no_license | ShepherdOutsidethefortres/JavaBase | 14995735a15d04529ea5fc487fea3aeac878a22c | f7b748ba4b808ba6bf9922718b6fa28615775fc0 | refs/heads/master | 2021-06-26T15:07:04.659964 | 2021-02-25T06:38:51 | 2021-02-25T06:38:51 | 211,585,121 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 878 | puml | @startuml
abstract class CarModel{
-sequence:ArrayList<String>
#{abstract}start():void
#{abstract}stop():void
#{abstract}alarm():void
#{abstract}engineBoom():void
+run():void
+setSequence(ArrayList<String>):void
}
class BenzModel{
#start():void
#stop():void
#alarm():void
#engineBoom():void
}
class BMWModel{
#start():void
#stop():void
#alarm():void
#engineBoom():void
}
CarModel <|-- BenzModel
CarModel <|-- BMWModel
class Client{
+{static}main(String[]):void
}
abstract class CarBuilder{
+{abstract}setSequence(ArrayList<String>):void
+{abstract}getCarModel():CarModel
}
class BenzBuilder{
-benz:BenzModel
+setSequence(ArrayList<String>):void
+getCarModel():CarModel
}
class BMWBuilder{
-bmw:BMWModel
+setSequence(ArrayList<String>):void
+getCarModel():CarModel
}
CarBuilder<|--BenzBuilder
CarBuilder<|--BMWBuilder
CarModel<..CarBuilder
BenzBuilder<..Client
@enduml |
5db0b60818a919ef27f2459519d00b6557f0ea81 | 622c008212ad81846b9e5fbf6ac5ea98d4a442c9 | /src/adapter/interfadapter/intadapter.puml | 57ec9b9a5815acd2858085e795a78a3cc92e015d | [] | no_license | YangLiuQing-star/design-pattern | a6561cf5113128be355ec118807c2c0c6206bad7 | 2823c77e317a1de922142590166f784966f0b152 | refs/heads/master | 2022-12-27T21:23:56.249453 | 2020-10-13T13:49:25 | 2020-10-13T13:49:25 | 303,718,595 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | puml | @startuml
title 接口适配器,适用于一个接口不想使用其所有方法的情况
interface Interface{
operation():void
operation2():void
operation3():void
}
abstract class AbsAdapter
note right:空实现了接口中的所有方法
AbsAdapter ..|> Interface
class A
A ..> AbsAdapter
@enduml |
17a4620876c31ddfc0205aa53836be86be372baf | 640f51d038b77215c0f3cfcc36c100a5c507bb83 | /docs/umldg/Storage.puml | dcd9334466582779ed2390564a759718c3bc3a29 | [] | no_license | AY2122S1-CS2113T-F12-2/tp | cd6d1a8357501a775a196c61d7819c864ac3092a | 3c506b80030d7891626be2a8a7c499419bd1abf6 | refs/heads/master | 2023-09-04T06:12:50.670923 | 2021-11-08T13:05:54 | 2021-11-08T13:05:54 | 410,188,692 | 0 | 5 | null | 2021-11-08T13:05:55 | 2021-09-25T05:52:40 | Java | UTF-8 | PlantUML | false | false | 1,644 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam stereotypeCBackgroundColor White
hide circle
package "logger" {
class LoggerUtil #LightBlue##Blue {
+setupLogger(Logger) {static}
}
}
package "storage" {
together {
class Storage #LightGreen##Green {
-LOGGER:Logger {static}
-storagePath:String
-file:File
-filePath:String
+Storage()
+loadData(WorkoutList workoutList):void
+saveData(String jsonString):void
+convertToJson(WorkoutList workoutList):String
}
class JsonUtil #LightGreen##Green {
+parse(String src):JsonNode {static}
+fromJson(JsonNode node, Class<A> convertedClass):<A> A {static}
+toJson(Object obj):JsonNode {static}
+stringify(JsonNode node, boolean isPretty):String {static}
}
}
package "storage.models" {
together {
class WorkoutListModel #LightGreen##Green {
+WorkoutListModel(ArrayList<WorkoutModel> workouts)
+getWorkouts():ArrayList<WorkoutModel>
+addToWorkoutListModel(WorkoutModel):void {static}
+clearWorkoutListModel():void {static}
}
class WorkoutModel #LightGreen##Green {
+WorkoutModel(ArrayList<ExerciseModel> exercises,String workoutName)
+getWorkoutName():String
+getExercises():ArrayList<ExerciseModel>
+addToWorkoutModel(ExerciseModel):void {static}
}
class ExerciseModel #LightGreen##Green {
+ExerciseModel(String description, String sets, String reps, String isDone)
+getDescription():String
+getSets():String
+getReps():String
+getIsDone():String
+addToWorkoutModel(ExerciseModel) {static}
}
}
}
}
Storage-->JsonUtil : uses >
Storage--> "workoutListModel 1"WorkoutListModel
Storage..>LoggerUtil
WorkoutListModel "1" --> "workouts *" WorkoutModel
WorkoutModel "1" --> "exercises *" ExerciseModel
@enduml |
417a9d7ae0488fcc467d5a7cfb138cf48495e945 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/Test/Script/ClassTest/GondaSan.puml | 8935cebd1b945a13b24b1fa717960ffe27c7627d | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 256 | puml | @startuml
class GondaSan {
cullentTime : int = 0
cullentTimePast : int = 0
Start() : void
Update() : void
AddCullentTimePast() : void
}
Ningen <|-- GondaSan
GondaSan o-> "timePastIkimono" Ikimono
GondaSan o-> "gondaName" Ningen
@enduml
|
f48a2cd2fb8cf9677a29d1b7234d31a7590185e6 | c6fa8545978b664ac557f530c9b0fab84780d450 | /AbstractFactoryAndSingleton/docs/img/Task_CD.puml | d2054597be16a4989212d01910a307ebf7bc4350 | [] | no_license | rovany706/design-patterns | 1779eaf3fdea4b865d7160c46ba918fe0540342a | 79eb1e40ebe4e3eb5b3f00f7020bc5e85b0e8fc1 | refs/heads/master | 2020-12-14T15:35:25.922667 | 2020-04-15T09:02:51 | 2020-04-15T09:02:51 | 234,789,540 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,396 | puml | @startuml
package "AbstractFactory" {
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
class MobileApplication {
+button: Button
+menu: Menu
+scroll: Scroll
}
interface Button {
+click(): void
}
interface Menu {
+choose(): void
}
interface Scrollbar {
+scroll() : void
}
class iOSButton {
}
class iOSMenu {
}
class iOSScrollbar {
}
class AndroidButton {
}
class AndroidMenu {
}
class AndroidScrollbar {
}
interface GuiFactory {
+createButton() : Button
+createMenu() : Menu
+createScroll() : Scrollbar
}
class iOSFactory {
}
class AndroidFactory {
}
Button <|-- iOSButton
Button <|-- AndroidButton
Menu <|-- iOSMenu
Menu <|-- AndroidMenu
Scroll <|-- iOSScrollbar
Scroll <|-- AndroidScrollbar
GuiFactory <|-- iOSFactory
GuiFactory <|-- AndroidFactory
iOSFactory ..> iOSButton
iOSFactory ..> iOSMenu
iOSFactory ..> iOSScroll
AndroidFactory ..> AndroidButton
AndroidFactory ..> AndroidMenu
AndroidFactory ..> AndroidScrollbar
MobileApplication --> GuiFactory
MobileApplication --> Button
MobileApplication --> Menu
MobileApplication --> Scrollbar
}
@enduml |
443a0642ec37a54241b8f1bcacbeb61e57188e91 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QueryComplexityLimitExceededError.puml | 40aba800399ea90f09dca3eb12ff29cb042108c8 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 453 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface QueryComplexityLimitExceededError [[QueryComplexityLimitExceededError.svg]] extends ErrorObject {
code: String
message: String
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
|
6378dfb7218340dda4c36341c7298f2075be6edc | 43fc7f97759eb0e50e1eb4db8dfc90dda934b74b | /addressBookEx1/logical_class_diag.puml | c50d48018388a9fd833e1b82a2fadf2218360e7e | [] | no_license | digiry/pythonStudy | 14b7447c1d966df864019e8759e218671e9fb63a | 9cf2c5e2372d6f9dc059c33b58947ef00fc7a520 | refs/heads/master | 2020-04-01T06:50:33.501334 | 2014-06-18T15:09:41 | 2014-06-18T15:09:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,056 | puml | @startuml
class 주소정보 {
+이름
+전화번호
+주소
}
class 주소정보리스트 {
+주소정보를 추가한다()
+주소정보를 삭제한다()
+주소정보를 수정한다()
+index로 주소정보를 조회한다()
+이름으로 주소정보를 검색한다()
+전화번호로 주소정보를 검색한다()
+주소정보리스트를 정렬한다()
+주소정보리스트를 DB에 저장한다()
+DB에서 주소정보리스트를 불러온다()
+주소정보리스트를 file에 저장한다()
+file에서 주소정보리스트를 불러온다()
}
class 주소정보리스트UI {
+MainMenu를 출력한다()
+menu를 선택한다()
+주소정보를 입력한다()
+주소정보를 삭제한다()
+주소정보를 수정한다()
+전체 주소정보를 조회한다()
+이름으로 검색한다()
+전화번호로 검색한다()
+DB에 저장한다()
+DB에서 불러온다()
+file에 저장한다()
+file에서 불러온다()
}
주소정보 "*" <--- "1" 주소정보리스트
주소정보리스트 <--- 주소정보리스트UI
@enduml
|
e298a7e4817dbc2847cd9558d8aa130fd4c7f9f5 | c6816d4e4117fb2720b343661a5aa8f5e3007481 | /de.gematik.ti.cardreader.access/doc/plantuml/CRA/access.plantuml | 587ede4006e57f9f663319d2f5eba3659bc41357 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderAccess | 573123e1cff5f1b42c605f06e51f03d665082876 | 1e1e5a6a800fac8908ed879f99ef983329dfe2c0 | refs/heads/master | 2022-01-11T19:22:33.546448 | 2022-01-07T06:41:42 | 2022-01-07T06:41:42 | 214,092,589 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,313 | plantuml | @startuml
package de.gematik.ti.cardreader.access {
class CardReaderControllerManager {
{static} - instance : CardReaderControllerManager
- CardReaderControllerManager()
{static} + getInstance()
+ initialize()
+ cardReaderProviderAvailable()
+ getCardReaderProviderNames()
+ getCardReaderProviderDescriptors()
+ getCardReaders()
+ getCardReaderControllers()
- getCardReaderProviders()
}
}
package de.gematik.ti.cardreader.access {
interface ICardReaderControllerInitializer {
{abstract} + initializeCardReaderController()
}
}
ICardReaderControllerInitializer <|.. CardReaderControllerManager : <<use>>
'Card Reader Provider API
'--------------------------------------------------------------------------------------------------
node "CardReaderProvider API" {
package de.gematik.ti.cardreader.provider.api {
interface ICardReader {
{abstract} + initialize()
{abstract} + isInitialized()
{abstract} + connect()
{abstract} + connect()
{abstract} + getName()
{abstract} + isCardPresent()
{abstract} + waitForCardAbsent()
{abstract} + waitForCardPresent()
}
}
package de.gematik.ti.cardreader.provider.api {
package de.gematik.ti.cardreader.provider.api.entities {
interface IProviderDescriptor {
{abstract} + getName()
{abstract} + getLicense()
{abstract} + getDescription()
{abstract} + getShortDescription()
{abstract} + getClassName()
}
}
}
package de.gematik.ti.cardreader.provider.api {
interface ICardReaderController {
{abstract} + getCardReaders()
}
}
}
ICardReader <|.. CardReaderControllerManager : <<use>>
IProviderDescriptor <|.. CardReaderControllerManager : <<use>>
ICardReaderController <|.. CardReaderControllerManager : <<use>>
'--------------------------------------------------------------------------------------------------
@enduml
|
55578ca9608695d1db40b3e5594b5ccfa72e21fb | 6d666244c20eb70b4d1b2393c64de25f8d961d09 | /app/src/main/java/com/example/edelhome/ui/home/home.plantuml | 0a59d0bd27cb6384ef7bdca8db3683bda7a7d94d | [] | no_license | Neptun95/EdelHomeAPP | 582c3ed65a3b630878fd36de0a0e75a4955d3f89 | bcf529dfdd6c5ac67c8ee7809c360b31bd065f8d | refs/heads/master | 2021-02-24T21:33:00.940882 | 2020-03-06T14:35:23 | 2020-03-06T14:35:23 | 245,442,067 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 976 | plantuml | @startuml
title __HOME's Class Diagram__\n
namespace com.example.edelhome {
namespace ui.home {
class com.example.edelhome.ui.home.HomeFragment {
- textView : TextView
+ onCreateView()
}
}
}
namespace com.example.edelhome {
namespace ui.home {
class com.example.edelhome.ui.home.HomeViewModel {
- imageView : ImageView
- mText : MutableLiveData<String>
+ HomeViewModel()
+ getText()
}
}
}
com.example.edelhome.ui.home.HomeFragment -up-|> androidx.fragment.app.Fragment
com.example.edelhome.ui.home.HomeFragment o-- com.example.edelhome.ui.home.HomeViewModel : homeViewModel
com.example.edelhome.ui.home.HomeViewModel -up-|> androidx.lifecycle.ViewModel
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
c501d5834b95976ff0c1a973a8e192faa3da1299 | fbe1dfa9dc016367ee5c1bf32c4689bdfb9d868e | /orchestrator/src/main/java/orchestrator/handler/legal/legal.plantuml | c200fcda8aa08d2ed9a83dd04c3c1340af1e3900 | [] | no_license | marcllort/Car_Rental_Monorepo | 844638554f226f04b2b00c35c4077d98b947f7c2 | 9f3fad50034cd85e149d457e323561d517220d31 | refs/heads/master | 2023-06-30T15:18:00.352756 | 2021-07-26T17:46:46 | 2021-07-26T17:46:46 | 323,322,306 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 938 | plantuml | @startuml
title __LEGAL's Class Diagram__\n
namespace orchestrator {
namespace handler {
namespace legal {
class orchestrator.handler.legal.RetrieveLegalHandler {
- jacksonObjectMapper : ObjectMapper
+ handle()
}
}
}
}
namespace orchestrator {
namespace handler {
namespace legal {
class orchestrator.handler.legal.RetrieveLegalProducer {
- rabbitTemplate : RabbitTemplate
+ produce()
}
}
}
}
orchestrator.handler.legal.RetrieveLegalHandler .up.|> orchestrator.handler.EndpointHandler
orchestrator.handler.legal.RetrieveLegalHandler o-- orchestrator.handler.legal.RetrieveLegalProducer : producer
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
d4d8a5d6fa0775e6dd2491197e138b063fdb2951 | d702b31e656edcb9944228c0309f153bdff29eec | /doc/plantuml/HCARDA/command/SetLogicalEofCommand.plantuml | 6499f469e69585cfe0ec02cd69ce3cd000d8cabc | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardAccess | 4f3957bfe40c56ffbf82782528a6e543ea00e9e3 | eb9a12f7eea309bb5b23269de9d8fa924f91fe4f | refs/heads/master | 2022-02-14T18:25:41.769547 | 2022-01-07T07:24:17 | 2022-01-07T07:24:17 | 213,916,430 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,501 | plantuml | @startuml
package de.gematik.ti.healthcardaccess {
interface IHealthCardCommand {
{abstract} + executeOn()
}
}
package de.gematik.ti.healthcardaccess {
abstract class AbstractHealthCardCommand {
{static} - LOG : Logger
{static} # NE_MAX_EXTENDED_LENGTH : int
{static} # NE_MAX_SHORT_LENGTH : int
{static} # EXPECT_ALL : int
# cla : int
# ins : int
# p1 : int
# p2 : int
# data : byte[]
# ne : int
# AbstractHealthCardCommand()
# AbstractHealthCardCommand()
{abstract} + getTechnicalResponseApdus()
- inferResponseStatusFromResponseCode()
+ executeOn()
# sendApdu()
- getCommandApdu()
}
}
package de.gematik.ti.healthcardaccess {
package de.gematik.ti.healthcardaccess.commands {
class SetLogicalEofCommand {
{static} - CLA : int
{static} - INS : int
{static} - BYTE_MODULO : int
{static} - SFI_MARKER : int
{static} - technicalResponseApdus : Map<Integer, ResponseStatus>
+ getTechnicalResponseApdus()
+ SetLogicalEofCommand()
+ SetLogicalEofCommand()
+ SetLogicalEofCommand()
+ SetLogicalEofCommand()
}
}
}
AbstractHealthCardCommand -up-|> IHealthCardCommand
SetLogicalEofCommand -up-|> AbstractHealthCardCommand
@enduml |
0840cf93829773c993fba48161557159ec3c1ee6 | ba5cb0efe3483c4f1c34f010b4ed83d4117d796b | /documentation/diagrams/Resource_PhysicalResource.puml | 6add5b40b2b52250045059ce1f37af1f111074b1 | [] | no_license | thobraun11/TMF639_Resource_Inventory | 153483ffd3b591c623a2f23111d3f6e5e15f1b54 | ada6a7949147830102ac718b68f26fabebd6ba6c | refs/heads/master | 2020-08-29T13:19:45.715331 | 2019-10-22T14:57:24 | 2019-10-22T14:57:24 | 218,043,084 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,073 | puml | @startuml
hide circle
hide methods
hide stereotype
show <<Enumeration>> stereotype
skinparam class {
BackgroundColor<<Enumeration>> #E6F5F7
BackgroundColor<<Ref>> #FFFFE0
BackgroundColor<<Pivot>> #FFFFFFF
BackgroundColor #FCF2E3
}
class PhysicalResource <<Pivot>> {
category : String
description : String
endOperatingDate : DateTime
href : String [1]
id : String [1]
lifecycleState : ResourceLifecycleStateType
manufactureDate : DateTime
name : String
powerState : String
resourceVersion : String
serialNumber : String
startOperatingDate : DateTime
versionNumber : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
class RelatedPlaceRefOrValue {
href : String [1]
id : String [1]
name : String
role : String [1]
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
class AttachmentRefOrValue {
attachmentType : String
content : String
description : String
href : String
id : String
mimeType : String
name : String
size : Quantity
url : String
validFor : TimePeriod
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
class Note {
author : String
date : DateTime
text : String [1]
@baseType : String
@schemaLocation : Uri
@type : String
}
class ResourceSpecificationRef <<Ref>> {
href : String [1]
id : String [1]
name : String
version : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
class Characteristic {
name : String [1]
value : Any [1]
valueType : String
@baseType : String
@schemaLocation : Uri
@type : String
}
class RelatedPartyRef <<Ref>> {
href : String
id : String [1]
name : String
role : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
class ResourceRelationship {
name : String
type : String
@baseType : String
@schemaLocation : Uri
@type : String
}
class ResourceRef <<Ref>> {
href : String
id : String [1]
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
PhysicalResource -right[hidden]-> ResourceLifecycleStateType
PhysicalResource *--> "0..*" Characteristic : resourceCharacteristic
PhysicalResource *--> "0..*" ResourceRelationship : resourceRelationship
ResourceRelationship *-right-> "0..*" Characteristic : resourceRelationshipCharacteristic
Note "0..*" <-left-* PhysicalResource : note
RelatedPartyRef "0..*" <--* PhysicalResource : relatedParty
RelatedPlaceRefOrValue "0..1" <--* PhysicalResource : relatedPlace
AttachmentRefOrValue "0..*" <--* PhysicalResource : resourceAttachment
PhysicalResource *--> "0..1" ResourceSpecificationRef : resourceSpecification
Characteristic <-left[hidden]- ResourceSpecificationRef
ResourceRelationship *--> "0..1" ResourceRef : resourceRef
@enduml |
e3dcc2a6559580722430db1494707a5265994fa0 | 9896757fbe9f180a2d4bcaf860334c55bea53327 | /docs/pic/ClassDiagram.puml | 315cf79154bf3dd39cd0b69267a8e77123f2ad0a | [] | no_license | Ruiting1/tp | 971a913d784a495564e81da13a03d7b3f45b180f | aa811b5af5c67bea876f0dae19ddab9941eacef5 | refs/heads/master | 2023-08-29T21:55:57.380764 | 2021-11-13T12:50:57 | 2021-11-13T12:50:57 | 410,244,833 | 0 | 0 | null | 2021-09-25T10:40:19 | 2021-09-25T10:40:18 | null | UTF-8 | PlantUML | false | false | 8,158 | puml | @startuml
class Next {
~ui : Ui
~storage : Storage
~{static} lists : ArrayList<GtdList>
~master : GtdList
~current : GtdList
+Next(filePath : String)
+{static} main(args : String) : void
+run() : void
}
class Storage {
+{static} DEFAULT_STORAGE_FILEPATH : String
+path : Path
+Storage(filePath : String)
-{static} isValidPath(filePath : Path) : boolean
+save(gtdList : GtdList) : void
+load() : GtdList
}
class Ui {
-in : Scanner
-out : PrintStream
-{static} SEPARATE_LINE : String
-{static} ERROR_LOADING_MSG : String
+Ui()
+Ui(in : InputStream, out : PrintStream)
+readCommand() : String
+readPut() : String
+showLine() : void
+showError(message : String) : void
+showLoadingError() :void
}
class Parser {
+{static} BASIC_COMMAND_FORMAT : Pattern
+{static} INDEX_ARGS_FORMAT : Pattern
+{static} INDEX_FORMAT : Pattern
+{static} CHK_INDEX_FORMAT_STEP_1 : Pattern
+{static} CHK_INDEX_FORMAT_STEP_2 : Pattern
+{static} SET_CMD_FORMAT : Pattern
+{static} SET_CMD_FORMAT_OPTIONAL : Pattern
+{static} LIST_FOLDER_TYPE : String[]
+parse(inputCommand : String) : Command
-prepareAdd(args : String) : Command
-prepareList(args : String) : Command
-prepareDone(args : String) : Command
-prepareDelete(args : String) :Command
-prepareSet(args : String) :Command
-parseArgsAsIndexParam(args : String) : List<String>
}
class Command {
#master: GtdList
#current :GtdList
+Command()
+execute() : void
+setData(lists : ArrayList<GtdList>) :void
}
class AddCommand {
+{static} COMMAND_WORD : String = add
-taskname : String
+AddCommand(taskname : String)
+execute() : void
}
class DeleteCommand {
+{static} COMMAND_WORD : String = delete
-targetIndex : List<String>
+DeleteCommand(targetIndex : List<String>)
+execute() : void
}
class DoneCommand {
+{static} COMMAND_WORD : String = done
-targetIndex : List<String>
+DoneCommand(targetIndex : List<String>)
+execute() : void
}
class ExitCommand {
+{static} COMMAND_WORD : String = bye
+execute() : void
+{static} isExit(command : Command) : boolean
}
class IncorrectCommand {
+feedbackToUser : String
+IncorrectCommand(feedbackToUser : String)
+execute() : void
}
class ListCommand {
+{static} COMMAND_WORD : String = list
-folderType : String
+ListCommand(folderType : String)
+execute() : void
}
class ProjModeCommand {
+{static} COMMAND_WORD : String = proj-mode
+{static} INDEN : String
-ui : Ui
-inbox : GtdList
-proj : GtdList
+ProjModeCommand()
-init() : void
+execute() : void
+printSideBySide() : void
-parse(input : String) : String[]
-longestWidth(left : String[]) : int
}
class SetCommand {
+{static} COMMAND_WORD : String = set
-targetIndex : List<String>
-folderType : String
-stat : Stat
+SetCommand(targetIndex : List<String>, folderType : String)
+execute() : void
}
class DueCommand {
+{static} COMMAND_WORD : String = due
-targetIndex : List<String>
-due : LocalDate
+DueCommand(targetIndex : List<String>, due : LocalDate)
+execute() : void
}
class GtdListDecoder {
+{static} GTD_THOUGHT_TXT_FILE_FORMAT : Pattern
+{static} decodeTaskList(encodedGtdList : List<String>) : GtdList
-{static} getParent_GtdList(gtdList : List<GtdThought>, parents : String) : GtdThought
-{static} getParent_GtdThought(gtdThought : GtdThought, parents : String) : GtdThought
-{static} decodeGtdThoughtFromString(encodedGtdThought : String) : HashMap<String, Object>
}
class GtdListEncoder {
+{static} encodeGtdList(toSave : GtdList) : List<String>
-{static} encodeGtdThought(toSave : GtdThought) : List<String>
-{static} getParents(gtdThought : GtdThought) : String
-{static} encodeGtdThoughtToString(gtdThought : GtdThought) : String
}
GtdListDecoder ..> GtdList
GtdListEncoder ..> GtdList
GtdListDecoder ..> GtdThought
GtdListEncoder ..> GtdThought
Storage ..> GtdListEncoder
Storage ..> GtdListDecoder
Storage ..> GtdList
class GtdList {
-{static} INDEN : String
~list : ArrayList<GtdThought>
+GtdList()
+GtdList(gtdThoughts : Collection<GtdThought>)
+GtdList(source : GtdList)
+stream() : Stream<GtdThought>
+size() : int
+add(thought : GtdThought) : void
+add(thoughts : ArrayList<GtdThought>) : void
+get(index : int) : GtdThought
+get(numbering : String) : GtdThought
+remove(index : int) : void
+removeAll(toRemove : ArrayList<GtdThought>) : void
+print() : void
+getLines() : String
+addNum(text : String, startNum : int) : String
+countInden(str : String) : int
+clear() : void
+iterator() : Iterator<GtdThought>
}
interface Iterable<GtdThought>
GtdList ..|> Iterable
GtdList --> "*" GtdThought
GtdList ..> GtdList
class GtdThought {
-{static} INDEN : String
-status : Stat
-lv : int[] = {0,1,2}
-level : int = lv[0]
-title : String
-note : String
-parent : Optional<GtdThought>
-children : ArrayList<GtdThought>
-creation : LocalDateTime
-due : LocalDateTime
-done : LocalDateTime
-id : int
-parentID : int
-levelNo : int
+{static} maxID : int
+GtdThought(title : String)
+GtdThought(title : String, parent : GtdThought)
+GtdThought(id : int, status : Stat, title : String)
+getId() : int
+getParentId() : int
+getParent() : Optional<GtdThought>
+getLevelNo() : int
+getTitle() : String
+getlevel() : int
+setlevel(n : int) : void
+addSub(sub : GtdThought) : void
+removeSub(thought : GtdThought) : void
+getSub() : ArrayList<GtdThought>
+addParent(project : GtdThought) : void
+print() : void
+printRec() : void
+getTextRec() : String
-auxgetTextRec(text : String) : String
+setParent(thought : GtdThought) : void
+getRec(stat : Stat) : ArrayList<GtdThought>
+auxgetRec(stat : Stat, filtered : ArrayList<GtdThought> : void
+getStatus() : Stat
+setStatus(status : Stat) : void
+hasChildren() : boolean
+getChildren() : ArrayList<GtdThought>
+setTitle(title : String) : void
+setNote(title : String) : void
+toString() : String
}
GtdThought --> GtdThought
GtdThought --> "1" Stat
class GtdSpliterator{
-listToSplit : ArrayList<GtdThought>
~count : int
+GtdSpliterator(listToSplit : ArrayList<GtdThought>)
+tryAdvance(action: Consumer<? super GtdThought>) : boolean
+trySplit() : Spliterator<GtdThought>
+estimateSize() : long
+characteristics() : int
}
interface Spliterator<GtdThought>
GtdSpliterator ..|> Spliterator
GtdSpliterator --> GtdThought
GtdList ..> GtdSpliterator
enum Stat{
NONE
TODO
PROJ
NEXT
WAIT
STRT
SOME
DONE
}
Next --> "1" Ui
Next --> "1" Storage
Next --> "2" GtdList
Next ..> Command
Next ..> Parser
Command --> "2" GtdList
AddCommand ..> "master" GtdList
'AddCommand ..> GtdThought
DeleteCommand ..> "master" GtdList
DeleteCommand ..> "current" GtdList
'DeleteCommand ..> GtdThought
DoneCommand ..> "current" GtdList
'DoneCommand ..> GtdThought
DoneCommand ..> Stat
ListCommand ..> Stat
ListCommand ..> "master" GtdList
ListCommand ..> "current" GtdList
ProjModeCommand --> "inbox" GtdList
ProjModeCommand --> "proj" GtdList
ProjModeCommand ..> "master" GtdList
ProjModeCommand --> Ui
'ProjModeCommand ..> GtdThought
ProjModeCommand ..> Stat
SetCommand ..> Stat
SetCommand ..> "master" GtdList
SetCommand ..> "current" GtdList
'SetCommand ..> GtdThought
DueCommand ..> "current" GtdList
Parser ..> Command
Parser ..> AddCommand
Parser ..> DeleteCommand
Parser ..> DoneCommand
Parser ..> ListCommand
Parser ..> ProjModeCommand
Parser ..> ExitCommand
Parser ..> IncorrectCommand
Parser ..> DueCommand
Command <|-- AddCommand
Command <|-- DeleteCommand
Command <|-- DoneCommand
Command <|-- ListCommand
Command <|-- ProjModeCommand
Command <|-- SetCommand
Command <|-- ExitCommand
Command <|-- IncorrectCommand
Command <|-- DueCommand
@enduml |
0e740b0f0e21519bcc9acadcfdea3eab32578a5f | 3799485d044ea837adff21cb08b03fef972fcf03 | /ArtOrders/out/production/ArtOrders/orders/view/windows/windows.plantuml | be98bc895282d59e643726127b0c0e631e4347d6 | [] | no_license | KateChaus/artOrders | 4d3f5552fbaed5a96d7050562cc1a9cf5fd7076e | 2ef2c87d48c9aebab5746ea2dd53e66e33433362 | refs/heads/master | 2022-09-20T21:16:40.879672 | 2020-05-30T17:13:23 | 2020-05-30T17:13:23 | 268,121,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,277 | plantuml | @startuml
title __WINDOWS's Class Diagram__\n
namespace orders {
namespace view.windows {
class orders.view.windows.LoginWindow {
- buttonsBox : Box
- jFrame : JFrame
- loginBox : Box
- loginButton : JButton
- loginLabel : JLabel
- loginTextField : JTextField
- mainBox : Box
- passwordBox : Box
- passwordField : JPasswordField
- passwordLabel : JLabel
- registerButton : JButton
+ LoginWindow()
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.MainWindow {
- contentBox : Box
- jFrame : JFrame
- mainBox : Box
- menu : JMenuBar
+ MainWindow()
+ refresh()
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.OpenOrderWindow {
- costField : JTextField
- costLabel : JLabel
- descriptionField : JTextArea
- descriptionLabel : JLabel
- jFrame : JFrame
- mainBox : JPanel
- openButton : JButton
- slotsField : JTextField
- slotsLabel : JLabel
- style : ButtonGroup
- style3D : JRadioButton
- styleAnimation : JRadioButton
- styleDigital : JRadioButton
- styleLabel : JLabel
- styleOther : JRadioButton
- styleTraditional : JRadioButton
- type : ButtonGroup
- typeDescription : JRadioButton
- typeFree : JRadioButton
- typeLabel : JLabel
+ OpenOrderWindow()
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.ProfileEditorWindow {
- confirmPasswordBox : Box
- confirmPasswordField : JPasswordField
- confirmPasswordLabel : JLabel
- editButton : JButton
- infoLabel : JLabel
- infoTextField : JTextArea
- isArtistCheckBox : JCheckBox
- jFrame : JFrame
- mainBox : Box
- newPasswordBox : Box
- newPasswordField : JPasswordField
- newPasswordLabel : JLabel
- oldPasswordBox : Box
- oldPasswordField : JPasswordField
- oldPasswordLabel : JLabel
- usernameLabel : JLabel
+ ProfileEditorWindow()
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.RegisterWindow {
- buttonsBox : Box
- confirmBox : Box
- confirmField : JPasswordField
- confirmLabel : JLabel
- infoTextField : JTextArea
- isArtistCheckBox : JCheckBox
- jFrame : JFrame
- loginBox : Box
- loginLabel : JLabel
- loginTextField : JTextField
- mainBox : Box
- passwordBox : Box
- passwordField : JPasswordField
- passwordLabel : JLabel
- registerButton : JButton
+ RegisterWindow()
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.SearchWindow {
- applyButton : JButton
- costField : JTextField
- costLabel : JLabel
- filterPanel : JPanel
- jFrame : JFrame
- mainBox : Box
- resultPanel : JPanel
- searchButton : JButton
- style3D : JCheckBox
- styleAnimation : JCheckBox
- styleDigital : JCheckBox
- styleOther : JCheckBox
- styleTraditional : JCheckBox
- typeDescription : JCheckBox
- typeFree : JCheckBox
+ SearchWindow()
}
}
}
orders.view.windows.MainWindow o-- orders.view.panels.OrdersPanel : ordersPanel
orders.view.windows.MainWindow o-- orders.view.panels.ProfilePanel : profilePanel
orders.view.windows.MainWindow o-- orders.model.entities.User : user
orders.view.windows.MainWindow o-- orders.view.panels.UsersPanel : usersPanel
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
c070c6f7ed8e36246ee9e688d9168678403cfc2a | 54445e30c74df01cccd6bab3419b1998a22ad599 | /documentation/it03/domain_model.puml | 683f8db3e793c7e37899a413e5c61686d90753a0 | [] | no_license | danieljfgoncalves/arqsi2017-3da-1151159-1151452 | 68694c11c692eb0a6724af986206dd4f7d326772 | 905e8b061f9c763be31107db0b5245a062e0bab0 | refs/heads/master | 2021-05-05T06:27:14.764693 | 2017-12-13T12:55:08 | 2017-12-13T12:55:08 | 118,801,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,511 | puml | @startuml "domain_model_it3"
package "Electronic Prescriptions Frontend" <<rectangle>> #43CC72 {
class User {
name: string
email: string
password: string
roles: Role[]
}
enum Role {
Physician
Patient
Pharmacist
Admin
}
class MedicalReceipt {
prescriptions: Prescription[]
creationDate: Date
physician: User
patient: User
}
class Prescription {
expirationDate: Date
quantity: int
presentation: Presentation
posology: Posology
medicine: string
fills: Fill[]
}
class Fill {
date: Date
quantity: int
}
class Presentation {
drug: string
medicines: string[]
posologies: Posology[]
form: string
concentration: string
quantity: string
comments: Comment[]
}
class Posology {
quantity: string
technique: string
interval: string
period: string
}
class Comment {
comment: string
physician: User
}
}
User "1" <- "*" MedicalReceipt : physician
User "1" <- "*" MedicalReceipt : patient
MedicalReceipt "1" -> "*" Prescription
User "1" <-- "*" Comment
User "*" --> "*" Role
Role -[hidden] Comment
Comment "*" <- "1" Presentation
Presentation "1" -> "*" Posology : generic
Prescription "*" --> "1" Presentation
Prescription "1" -> "*" Fill
Prescription "*" --> "1" Posology : prescribed
@enduml |
309a55facc27d065786f75ec836e2293ffa097d7 | a4a624e90ce397d3428feee3cf34fea9b19a2a24 | /class diagram.puml | 24acc6b6332ffffd63a1065a50d2196d3221f56a | [] | no_license | vinvin129/gestionnaire_livre | 0f6139ef8cb868062c9b8ee85f00fc633b2c0a00 | be1e8bd3e822aa19d65118081ff2b3b5a4f991de | refs/heads/master | 2023-04-19T05:39:20.628681 | 2021-05-06T11:55:47 | 2021-05-06T11:55:47 | 364,267,935 | 0 | 0 | null | 2021-05-06T11:55:48 | 2021-05-04T13:37:12 | Java | UTF-8 | PlantUML | false | false | 517 | puml | @startuml
'https://plantuml.com/class-diagram
class Book {
-name: String
-author: String
-copyNumber: int
+Book(String, String, int)
+getName(): String
+getAuthor(): String
+getCopyNumber(): int
}
class Library {
-path: String
}
class Controller {
}
class Window {
}
abstract class AbstractView {
}
class ArrayBookPanel {
}
class NewBookPanel {
}
class Main
AbstractView <|-- ArrayBookPanel
Window --> "0..1" AbstractView: -view
Library --> "0..*" Book: -bookList
@enduml |
730ad633aaebc3c3a86aad61d9a8902b5c80fb46 | 22c062df90adff61becb66216348f35b57920adb | /DesignPatern/src/Behavioral/diagrams/music_player_state.puml | 5a671e2f3f3ac5f8d5f9bb587988e90322bc58a6 | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,412 | puml | @startuml
skinparam classAttributeIconSize 0
interface "Interface \n MusicPlayerState" as MusicPlayerState{
-string statuseName;
+{abstract}play(MusicPlayer *player):void
+{abstract}pause(MusicPlayer *player):void
+{abstract}stop(MusicPlayer *player):void
+MusicPlayerState(string statuseName):void
+getName():string
}
class MusicPlayer{
+MusicPlayerState *status;
+play():void
+pause():void
+stop():void
+MusicPlayer():void
+setState(MusicPlayerState *state):void
}
class StoppedState{
public:
+play(MusicPlayer *player):void
StoppedState();
}
class PlayingState{
pause(MusicPlayer *player):void
stop(MusicPlayer *player):void
PlayingState()
}
class PausedState{
+ play(MusicPlayer *player):void
PausedState();
}
StoppedState --|> MusicPlayerState
PlayingState --|> MusicPlayerState
PausedState --|> MusicPlayerState
note "cout<<'Illegal state transition from '<<statuseName<<' to play' <<endl" as MusicPlayerStatePlay
note "cout<<'Illegal state transition from '<<statuseName<<' to pause' <endl" as MusicPlayerStatePause
note "cout<<'Illegal state transition from '<<statuseName<<' to stop' <<endl" as MusicPlayerStateStop
MusicPlayerStatePause -left.. MusicPlayerState::pause
MusicPlayerState::play -left.. MusicPlayerStatePlay
MusicPlayerStateStop -up.. MusicPlayerState::stop
MusicPlayer o..MusicPlayerState
@enduml
|
9fbfacb1245ee012489611e338a748c1cd7ed981 | ed0c891d32880da75653a851ed37afc1cc752c91 | /uml/top_part.puml | af98ea83636a65da468378a7607aecb55be084e5 | [] | no_license | mohamed-hamdi/BestiolesProject | 0c77d74c4eac8e4c8fe0ddea2a093a537931fa93 | 24532c3c2924dfa6f2c3058662902cb4ae8d97eb | refs/heads/master | 2023-03-25T07:49:42.776057 | 2021-03-24T17:54:24 | 2021-03-24T17:54:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,527 | puml | @startuml classDiagram
class main
{
+main(int argc, char** argv):int
}
class BestioleFactory
{
+{static}Milieu: *milieu_
+{static}createBestiole(enum_Behavior selected_behaviour,enum_Sensor selected_sensor,enum_Accessory selected_accessory):shared_ptr<Bestiole>
+{static}createBestioleClone(Bestiole& b):shared_ptr<Bestiole>
+{static}createRandomeBestiole():shared_ptr<Bestiole>
+{static}createRandomBehaviour(): Behaviour*
-{static}createBehaviour(enum_Behavior selected_behaviour):Behaviour
-{static}createSensor(enum_Sensor selected_sensor):Sensor
-{static}createAccessory(enum_Accessory selected_accessory):Accessory
}
class Milieu {
-int: width
-int: height
-vector<shared_ptr<Bestiole>>: listeBestioles
+int deathByCollisions
+int naturalDeaths
+int births
+int clones
+Milieu(int _width, int _height)
+~Milieu()
+getWidth():int
+getHeight():int
+step():void
+addMember(shared_ptr<Bestiole> b):void
+nbVoisins(Bestiole* b):int
getBestiolesList():vector<shared_ptr<Bestiole>>&
+applyDeath():void
+operator<<(): ostream&
+shouldDie(Bestiole b):bool
}
class Aquarium{
-Milieu:*flotte
-int:delay
-int:currentStep
+int:screenWidth
+int:screenHeigth
+Aquarium(int width, int height, int _delay)
+~Aquarium()
+getMilieu(): Milieu&
+run():void
+waitForKey(): int
+saveState(fstream& MyFile):void
+saveBilan():void
}
main-->Aquarium
Aquarium-->Milieu
Milieu *-- Bestiole
BestioleFactory ..> Bestiole
BestioleFactory -- Milieu
@enduml |
fbe3cbd8b625074e916a0534bcd2fd1f7abf2be8 | ff7c256e07033fc9caac6750b75e244e3161dd8d | /umls/trade-manager.puml | 603aece01bc82cc25810eb4669b119c796377204 | [
"MIT"
] | permissive | reouno/tomatorader | 17a02148520bc745c5784b2a40c8f0320610df13 | b781206051129fa59439a0f314f4f1ed647a6852 | refs/heads/main | 2022-12-21T01:51:09.711011 | 2020-10-07T07:15:41 | 2020-10-07T07:15:41 | 301,954,935 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,104 | puml | @startuml trade-manager
package BackTestExchange {
class Broker {
add_closed_order_observer(Observer)
}
class TradeManager {
notify_order_filled(FilledOrder)
notify_order_cancelled(Order)
notify_new_orders([Order])
}
class PositionManager {
positions: Dict[str: List[Share]]
update_positions(List[FilledOrder])
}
class OrderManager {
open_orders: List[Order]
closed_orders: List[Order]
add_open_orders(List[Order])
update_orders(List[Order])
}
class AccountManager {
balance: Decimal
buying_power: Decimal
net_worth: Decimal
realized_pl: Decimal
unrealized_pl: Decimal
}
class NewOrderReceiver
Broker -left-> TradeManager
Broker .down.> PriceStream
TradeManager -up-> PositionManager
TradeManager -up-> OrderManager
TradeManager -up-> AccountManager
NewOrderReceiver -up-> TradeManager
NewOrderReceiver -up-> Broker
}
package Client {
class OrderClient
OrderClient -up-> NewOrderReceiver
}
@enduml |
947944bc222088164eff4bf8b1981b247cb0b38e | 7a2a8f27d8d99f586b011fb1d6fd805596f3e57e | /src/main/asciidoc/images/exercise2-classes.puml | 592504bd937bd3c93c2852c5c2342c292c3843c5 | [] | no_license | UMONS-Polytech-MPA-2021/mpa-tp2-ex2-template | cf58bf6bf79f45a4b2f79ab11a680376d2333ca3 | 3eaa2c3a11f914665fb0d59862a9451eee533ee8 | refs/heads/master | 2023-08-23T08:38:04.831739 | 2021-10-26T08:29:45 | 2021-10-26T08:29:45 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 753 | puml | @startuml
interface Payable {
{abstract} + computeSalary() : int
}
abstract class Employee {
+ getName() : String
+ sell() : void
+ workOneHour() : void
}
class FixedSalaryEmployee {
+ FixedSalaryEmployee(name : String, fixedSalary : int)
}
class BaseSalaryPlusCommissionEmployee {
+ BaseSalaryPlusCommissionEmployee(name : String, baseSalary : int, commission : int)
}
class WorkHourSalaryEmployee {
+ WorkHourSalaryEmployee(name : String, hourRate : int)
}
class ProductionWorker {
+ ProductionWorker(producedPieceRate : int)
+ produceOnePiece() : void
}
Payable <|-- Employee
Employee <|-- FixedSalaryEmployee
Employee <|--- BaseSalaryPlusCommissionEmployee
Employee <|-- WorkHourSalaryEmployee
Payable <|-- ProductionWorker
@enduml
|
50625887845c6e0e403e83ba591328f32fe29e5c | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Classes/Boundary/Timer.puml | cfddc89c95d5d5a9916145bd737093a371b1dff6 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
class Timer {
+ TimeRemaining : int <<get>>
+ <<event>> Expired : EventHandler
+ <<event>> TimerTick : EventHandler
+ Timer()
+ Start(time:int) : void
+ Stop() : void
}
@enduml
|
f9682c181775f6382133efbe46b5deccb411a7e5 | 54f0570710d72445f30bc8261595126edc5b67ca | /SQLite 10/handin/app_views_customertable.py.puml | 1ca6fd4be853cb5afcf3e0888538ba4a2187be12 | [] | no_license | deadbok/eal_programming | cab8fc7145b5115f887a7b10aad90880a799d118 | 33bf532b397f21290d6f85631466d90964aab4ad | refs/heads/master | 2021-01-13T15:11:19.276462 | 2017-06-13T09:20:51 | 2017-06-13T09:20:51 | 76,203,290 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 224 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
scale 2
namespace app {
namespace views {
class CustomerTable {
+methods
+get()
}
}
}
@enduml |
e75b2c8ccba9377fd1f35951f12f7288cb09f0d3 | c4247dacd93fda114afb1f966c9c35a57ab7c9ae | /tesis/.arquitectura/servicios/mailServer/Diagrama de clase/classD.plantuml | 68af59875a2ac35c9e049cac070c1522db4246a6 | [] | no_license | krivxII/Tesis_Auth-Layer-Service | bb4e0f8fd4bbde1824b4ba99f3b9fb1c3d51cd94 | ca20bafa886142a1115b496e733e3b8bd7bb86e4 | refs/heads/master | 2023-08-15T10:18:57.598634 | 2021-09-17T10:00:16 | 2021-09-17T10:00:16 | 363,900,690 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,726 | plantuml | @startuml
package "Express.js" #DDDDDD {
class router
}
package "cors" #DDDDDD {
}
package "nodemailer" #DDDDDD {
}
package "ajv" #DDDDDD {
}
class "index" {
void startApp()
}
class "servidor" {
port : Integer
void startServer()
}
class "rutasService" {
void crearRouter()
}
class "controllers" {
void mandarCorreoController()
}
class "mailHelper" {
void sendMail(numero : String, correo : String)
}
class "middlewares" {
void mandarCorreoSchema(request,response,next)
}
class "validator" {
bool validarCorreoToken(body : Json)
}
class "schemas" {
mandarCorreoSchema
}
Express.js <.. servidor : "<<use>>"
index::startApp ..> servidor::startServer : "<<use>>"
servidor ..> cors : "<<use>>"
servidor::startServer ..> rutasService::crearRouter : "<<use>>"
rutasService::crearRouter ..> controllers : "<<use>>"
rutasService::crearRouter ..> middlewares : "<<use>>"
rutasService ..> router : "<<use>>"
controllers ..> mailHelper : "<<use>>"
mailHelper ..> "nodemailer": "<<use>>"
middlewares ..> validator : "<<use>>"
validator ..> schemas : "<<use>>"
validator ..> ajv : "<<use>>"
@enduml
http://www.plantuml.com/plantuml/png/VPFHpjCm38Nl-nHHkIdIr0Uefkb7FqY0n0tZ1RB46jdIk3Xf6KAyEvbfscHQwMNydUEJs7tnGL8OUriDKbtb6KJzuJOGUDzUV2tUlETF_Av4_9ILtWl2CG1LVrQ5GYhOlEPGGo-D1TeYv6LwA5NLlqwrSHfkzTnzGgC5ntqt3CtRoCsK1vgCHahWW1H49pwv06UW1-qnma0iJteQW_JtSwEWQAO897tbwnO2XIuGMWla2xwNJajwHIB0rvb9qlLIzzVu27O0Acy6Jd-9fSQDFH362nm36NVU2SM6oq6Uf3TQM_Wf2RQJ7DLtw6L3y6C47tOH7T1vs3cuXTnhajPe6TPtF25QmQV9wXjUmJKdrBzYciyUNQxtt2VbU1A1ds7TBh5lMv5c9w9XlT-F7Ww7Ec8y-QvBuuv-RNiG2ywLDCnIcX0MA2HVb9yQC9flGTTbeo_jDp4soJQZaFrVbKrnKyKWFGbKPJqPMlRh4QooIWIBVxCWipmCBfjH6Yx73CtZBv2IY3zwKNq1fyVU_WK0 |
ed6a249d12a0c99741398857400bdf1ab07e897a | 8d4e07c0fdce64ba35651d51b277298fab651145 | /uml/ToDoList.puml | fd01f1f3b659203d3fd492b47b48713fec3b00d7 | [] | no_license | kingraham228/Ingraham-cop3330-assignment4 | 33d94ca766719e806506bd019facf3c281eb32aa | b0a76aae76c07d2593aef94c5b9e9e4e08d066af | refs/heads/master | 2023-06-06T02:54:03.857126 | 2021-07-01T21:34:44 | 2021-07-01T21:34:44 | 380,779,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,326 | puml | @startuml
class Item{
-description: String
-dueDate: String
-completeStatus: boolean
}
class ToDoList{
-listTitle: String
-items: ArrayList
+addItem()
+editItem()
+removeItem()
+markComplete()
+getItems()
}
class Lists{
-listMap: Map
+addList()
+removeList()
+editList()
+getListMap()
+mergeLists()
}
class FileManager{
+saveOneList()
+saveAll()
+openOneList()
+openAll()
}
class ListDisplay{
-displayArray: ArrayList
+displayItems()
-displayUncompleted()
-displayCompleted()
+emptyDisplayArray()
+sortDisplayArray()
+getDisplayArray()
}
class ToDoController{
+mCheckUncompleted: CheckMenuItem
+mCheckCompleted: CheckMenuItem
+listView: ListView
+cbLists: ChoiceBox
+updateListView()
+updateCBList()
+cbListSelect()
+mLoadListClicked()
+mLoadMultipleClicked()
+mSaveListClicked()
+mSaveAllListsClicked()
+mAddListClicked()
+mEditListClicked()
+mDeleteListClicked()
+mDisplayUncompletedClicked()
+mDisplayCompletedClicked()
+bAddItemClicked()
+bEditItemClicked()
+bDeleteItemClicked()
+bCompleteItemClicked()
+mSortDueDateClicked()
}
class App{
main()
start()
}
class InputValidator{
+checkDate()
}
org.javafx.Application <|-- App
App -- ToDoController
ToDoController o-- Lists
ToDoController o-- ListDisplay
ToDoController o-- FileManager
ToDoController o-- InputValidator
Lists *-- ToDoList
ToDoList *-- Item
@enduml |
4477000f2cb41ec96fda93047bbd58523fba953b | e49567ea3e4e5a6e5c7e988a46e8175f6a39857f | /uml/SaveAllLists.puml | 76e18ffff5ce30a6652d6b01b96078b0fb2e60f2 | [] | no_license | mate-gam/Gamero-cop3330-assignment4 | c5405940b3dd352731beb8b376734cf138d48d57 | 47193a255453dca6d73f4dd6bd2a2f5f3624cb50 | refs/heads/master | 2023-09-05T09:42:47.978569 | 2021-11-01T23:29:04 | 2021-11-01T23:29:04 | 423,345,539 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 184 | puml | @startuml
class SaveAllLists{
String formattedLists
==
.. Get CSV File Text Format ..
+ String getSaveItems()
.. Set CSV Text Format ..
+ void setSaveLists(String saveLists)
}
@enduml |
1955fb4b4647c193e191b871391fea70db4f13e0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/DeliveryRemovedMessage.puml | 5c06c3268facabc3d19c47c3445d9213145d5048 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,204 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface DeliveryRemovedMessage [[DeliveryRemovedMessage.svg]] extends OrderMessage {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
delivery: [[Delivery.svg Delivery]]
shippingKey: String
}
interface OrderMessage [[OrderMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
230e1670a9a4b2b1c75d9c67bfbd46d9d7dd2b54 | 58d47f5207228a486daf2f1c3293bdee6973487a | /src/Ejercicio02/diagramas/DiagramaDeClases.puml | a0683ad3981bf56e3285fa53b27b80648e823f26 | [] | no_license | felipeandradevalenzuela/java-clase-04 | 9feff32fe6ebd1e6571488d9ce380f9c04dbae5e | fad2871add195ca4ae82d923c07750a22debb2f4 | refs/heads/main | 2023-05-19T05:23:44.866858 | 2021-06-01T13:22:35 | 2021-06-01T13:22:35 | 372,531,991 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,060 | puml | @startuml Diagramas
class Vehiculo {
- int velocidad
- int aceleracion
- int ruedas
- int peso
- float anguloDeGiro
- String patente
}
class Carrera {
- float distancia
- float premioEnDolares
- String nombre
- int cantidadDeVehiculosPermitidos
- Vehiculo ganador
- List<vehiculo> participantes
+ darDeAltaAuto(velocidad,aceleracion,AnguloDeGiro,patente)
+ darDeAltaMoto(velocidad,aceleracion,AnguloDeGiro,patente)
+ eliminarVehiculo(vehículo)
+ eliminarVehiculoConPatente(String unaPatente)
+ obtenerGanador()
+ calcularganador()
+ socorrerAuto(Sring patente)
+ socorrerMoto(String patente)
}
class Moto {
- final int peso = 300
- final int ruedas = 2
}
class Auto {
- final int peso = 1000
- final int ruedas = 4
}
class SocorristaAuto {
+ socorrer(Auto unAuto)
}
class SocorristaMoto {
+ socorrer(Moto unaMoto)
}
Vehiculo <|-- Auto
Vehiculo <|-- Moto
Carrera ..> SocorristaAuto
Carrera ..> SocorristaMoto
Carrera "1" *-- "many" Vehiculo
@enduml |
1cf9ea31c1a645ecaecfd454733df42eb915ae8a | f576ded7c7322e8bb02ac9334761cafcf0106385 | /TemplateMethod/General/out/ConcreteClass.puml | 9a4720096cd1c3ef6dcab72a9476aca4d9d90ba8 | [] | no_license | Zukky55/design_pattern | 233c7befca30d98af43804450c41f9fea36e4b0e | 512464b01c23029db879b48a3e5533ec910724e8 | refs/heads/master | 2023-01-10T17:34:28.021070 | 2020-11-17T06:13:51 | 2020-11-17T06:13:51 | 304,786,374 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 149 | puml | @startuml
class ConcreteClass {
# <<override>> method01() : void
# <<override>> method02() : void
}
AbstractClass <|-- ConcreteClass
@enduml
|
0508cca241b10fd9948e6c9b7ea9917a55b01c32 | e37016f9bea6aac6954954ba33bde705a1245047 | /zx-note/src/test/graph/lucene/lucene-core/index/old/IndexWriterConfig属性.puml | 4a737548fbecf0bc6f71a2b3accad9c0fc0e3350 | [] | no_license | zouxiang1993/es_lucene | 11d558d98a9847b9df1d9d575bc9b362ac548f9b | c463345975db890105124c429965ed96ebd8bf92 | refs/heads/master | 2023-07-19T21:03:26.092718 | 2019-08-27T16:24:46 | 2019-08-27T16:24:46 | 148,873,770 | 3 | 3 | null | 2023-07-18T02:50:13 | 2018-09-15T05:47:30 | Java | UTF-8 | PlantUML | false | false | 1,175 | puml | @startuml
class LiveIndexWriterConfig{
---
// 索引时用的默认分词器
-Analyzer analyzer
//
-int maxBufferedDocs
-double ramBufferSizeMB
-int maxBufferedDeleteTerms
// 控制何时删除Commit Point
#IndexDeletionPolicy delPolicy
#IndexCommit commit
#OpenMode openMode
#Similarity similarity
// 选择应该执行哪些merge
#MergePolicy mergePolicy
// 控制merge何时执行、如何执行
#MergeScheduler mergeScheduler
#
IndexingChain indexingChain
// 定义了内部所有类型索引的Encoder和Decoder
Codec codec
//
#DocumentsWriterPerThreadPool indexerThreadPool
// 定义In-memery buffer 何时被flush
#FlushPolicy flushPolicy
// 限制In-memery buffer的大小,超过后强制flush
#int perThreadHardLimitMB
}
class IndexWriterConfig extends LiveIndexWriterConfig{
}
enum OpenMode{
---
// 创建一个新的索引,或者覆盖掉一个已经存在的索引
CREATE
// 打开一个已经存在的索引
APPEND
// 如果索引不存在,则CREATE;如果存在,则APPEND
CREATE_OR_APPEND
}
LiveIndexWriterConfig *--right-- OpenMode
@enduml |
124814b114341366e0b78295b66071f0938a7017 | fb84bca41a00746017b56791cc1900e4cb811be7 | /plantuml/TimerEvent.puml | ce2bfaa42cd195ba073c77de24f8cb0d9660e4f7 | [] | no_license | MainCastle1212/EverythingEater_Main | 9b3622cc5cca5f78a411cfd7df61fbdec29a8856 | c228f75b78387aee448c6fbb2f3a362dccb724bd | refs/heads/main | 2023-01-12T07:33:38.139825 | 2020-11-12T10:01:22 | 2020-11-12T10:01:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 439 | puml | @startuml
namespace Timer{
class TimerEvent {
isInvoked : bool = false
Update() : void
}
MonoBehaviour <|-- TimerEvent
TimerEvent o-> "OnTimeOver" UnityEvent
TimerEvent --> "timer" Timer
class Timer {
+ StartTime : int <<get>>
+ Time : float <<get>>
+ IsTimeOver : bool <<get>>
OnEnable() : void
+ Update() : void
+ Reset() : void
}
ScriptableObject <|-- Timer
Timer --> "gameSetting" GameSetting
}
@enduml
|
ec80a75704b883e871938bd1f5c83391bb388853 | 613de188d54547e3f51fc5cce1345d86adf9efec | /labs/hobby/asciidocs/plantuml/cld.puml | ff5546d1236bebfe3a0c16424ba156eea2ea8cfe | [] | no_license | 2021-4ahif-nvs/2021-4ahif-nvs-lecture-notes | 69cb1c58a25709d0a4709705c02520d3f5ee8c9d | 767d6485d7e6bfec40af104f20d0e096a12a632e | refs/heads/master | 2023-05-12T06:28:47.241565 | 2021-06-10T13:57:20 | 2021-06-10T13:57:20 | 297,427,276 | 1 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
class Person {
name: String
hobby: Hobby
}
class Hobby {
description: String
List<Person> persons
}
Hobby "1" <-- "*" Person : führt aus >
Person "*" <-- "1" Hobby : wird ausgeführt >
@enduml
|
2663d3102b69fa6ea7a31e7dd886608e8f1b3e85 | 2047c988e8f15f5b5e1b9ffac5c6b1ed8d7cf1a0 | /paradigms/object_oriented/assignments/eight/thirteen.puml | 1a3bb94c9ce388e1117742a2957e1112c0cecb0e | [
"MIT"
] | permissive | jfernancordova/usal | a3d7eb46a94d03f4f930e083b4b0fd9e1be8274c | ff3c07fcbc86cdb140c8ea097f67500d75133b68 | refs/heads/master | 2022-03-05T21:23:13.118184 | 2019-11-01T18:57:08 | 2019-11-01T18:57:08 | 187,924,904 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 483 | puml | @startuml
class Venta {
- date: date
- local: Local
- homeAppliance: HomeAppliances
- price: Float
- soldQuantity: Int
- soldType: String
}
class HomeAppliances {
- code: string
- description: string
- price_base: float
- color: string
- energy: string
- weight: float
}
class Local {
- number: int
- name: string
- address: string
- responsability: string
}
Venta *-- HomeAppliances
Venta o-- Local
@enduml |
8677c5d8d4f1ffcaca954061da190a0fcc6d19d5 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/acceptance-of-delivery@0.0.3.puml | c691a91a0b258e48ed1f932337fac8539276d94f | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 884 | puml | @startuml
class org.accordproject.acceptanceofdelivery.InspectDeliverable << (T,yellow) >> {
+ DateTime deliverableReceivedAt
+ Boolean inspectionPassed
}
org.accordproject.acceptanceofdelivery.InspectDeliverable --|> org.hyperledger.composer.system.Transaction
class org.accordproject.acceptanceofdelivery.InspectionStatus << (E,grey) >> {
+ PASSED_TESTING
+ FAILED_TESTING
+ OUTSIDE_INSPECTION_PERIOD
}
class org.accordproject.acceptanceofdelivery.InspectionResponse << (T,yellow) >> {
+ InspectionStatus status
+ Participant shipper
+ Participant receiver
}
org.accordproject.acceptanceofdelivery.InspectionResponse --|> org.hyperledger.composer.system.Transaction
class org.accordproject.acceptanceofdelivery.TemplateModel {
+ Participant shipper
+ Participant receiver
+ String deliverable
+ Long businessDays
+ String attachment
}
@enduml
|
d77b020bb30cb56ee80f70b186c72ab6b2dcb7be | a546db78e9806979e459831fb16c6e51878eb60b | /src/main/model/prefrences/prefrences.plantuml | 9dbd30cf740c2bec8f58d4faa357a1b241239a32 | [] | no_license | Bryce-MW/WikidataExplorer | 92fd35b8e9364d9bd7e005a39d321bc788ea049f | 9ad2dac3c82077466dcb36f25128611881f8965b | refs/heads/master | 2023-06-22T20:58:25.975518 | 2021-07-25T22:33:33 | 2021-07-25T22:33:33 | 287,648,884 | 5 | 1 | null | 2020-08-16T06:03:52 | 2020-08-15T00:23:27 | Java | UTF-8 | PlantUML | false | false | 1,961 | plantuml | @startuml
title __PREFRENCES's Class Diagram__\n
namespace model.prefrences {
class model.prefrences.LayoutProfile {
- name : String
+ LayoutProfile()
+ getLayout()
+ getName()
+ setName()
}
}
namespace model.prefrences {
class model.prefrences.LayoutProfileManager {
- profiles : ArrayList<LayoutProfile>
+ LayoutProfileManager()
+ addProfile()
+ getCommandString()
+ getProfiles()
+ parse()
+ toString()
}
}
namespace model.prefrences {
class model.prefrences.PreferenceManager {
- preferences : ArrayList<UserPreference>
+ PreferenceManager()
+ getCommandString()
+ getPreferences()
+ parse()
+ toString()
}
}
namespace model.prefrences {
class model.prefrences.SerialIOController {
}
}
namespace model.prefrences {
interface model.prefrences.UserPreference {
}
}
namespace model.prefrences {
class model.prefrences.UserProfile {
- name : String
+ UserProfile()
+ getCommandString()
+ getLayoutProfileManager()
+ getPreferences()
+ parse()
+ toString()
}
}
model.prefrences.LayoutProfile o-- ui.cli.LayoutManager : layout
model.prefrences.LayoutProfileManager -up-|> ui.cli.MenuBarItem
model.prefrences.LayoutProfileManager o-- model.prefrences.LayoutProfile : current
model.prefrences.PreferenceManager -up-|> ui.cli.MenuBarItem
model.prefrences.UserProfile -up-|> ui.cli.MenuBarItem
model.prefrences.UserProfile o-- model.prefrences.LayoutProfileManager : layout
model.prefrences.UserProfile o-- model.prefrences.PreferenceManager : preferences
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
3fa2fd5ff719b88979b08649024f3895c19bb7ed | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Clases/Provincias.puml | 0bd0c257cf695c8fa533b27248314348f5fb9366 | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 157 | puml | @startuml Provincias
hide circle
class Provincias{
idProvincia: int
idPais: int
provincia: string
listarCiudades(): List<Ciudades>
}
@enduml |
e22d897d9820f67719abbe128423faa6f8de560f | 9c051a9ddde4e0fa071a68932621ec93b79e8dcf | /model/ginrummy_data_model.puml | bf582d783b47a6dee6c303361a12ec6fe2a19654 | [] | no_license | ottoema/ginrummy | 121a6ee12e515ce86f888cf1e74f285d888544b2 | fbd334db21d8fbe0f8d4223f2cb0eae818471678 | refs/heads/master | 2021-02-27T11:43:12.850323 | 2020-03-25T18:51:08 | 2020-03-25T18:51:08 | 245,603,542 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 755 | puml | @startuml
class GinRummyGame {
}
class GameRun {
run : Integer
completed : Boolean
date : Date
}
class Score {
points : Integer
}
class PlayerPurchases {
numberOfPurches : Integer
}
class Player {
name : String
wins : Integer
}
GinRummyGame "1" *-- "15" GameRun
GinRummyGame o-- "2..." Player
GameRun "1" *-- "2.." Score
Score o-- "1" Player
GameRun "1" *-- "2.." PlayerPurchases
PlayerPurchases o-- "1" Player
class LowestTotalScore {
score : Integer
game : GinRummyGame
player : Player
}
class HighestTotalScore {
score : Integer
game : GinRummyGame
player : Player
}
class HighestGameRunScore {
score : Integer
gameRun : GameRun
game : GinRummyGame
player : Player
}
@enduml |
818e236394e2961a8ccfdb2bc36ff5a0f035ef9e | 31ef7a78855b0fb0e9644dd61907e0c811b0daf6 | /thesis/logic-formula-generator/fol/subgenerator_flow.puml | d7c2a605f0e10829e8ec1554373d0e007babfa9b | [] | no_license | Przemcom/studio_projektowe1 | f7d57affe30324c0d1470e719a05d8efd92fc701 | a6418b164ee76b7dcb9c3287fb05ace1a79c13d3 | refs/heads/master | 2021-06-14T20:36:30.730708 | 2021-03-29T18:33:24 | 2021-03-29T18:33:24 | 179,491,905 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 843 | puml | @startuml
skinparam dpi 300
skinparam class {
backgroundColor Ivory
borderColor DarkRed
}
package SubGenerators {
CNFFormulaGenerator o-- CNFClauseGenerator
CNFClauseGenerator o-- LiteralGenerator
LiteralGenerator o-- AtomGenerator
AtomGenerator o-- Predicategenerator
AtomGenerator o-- VariableGenerator
AtomGenerator o-- FunctorGenerator
Predicategenerator o-- VariableGenerator
Predicategenerator o-- FunctorGenerator
VariableGenerator -o FunctorGenerator
}
class CNFFormulaGenerator {
cnf/1
cnf/2
..
}
class CNFClauseGenerator {
cnf(literal | literal).
..
}
class LiteralGenerator {
atom, ~atom
..
}
class AtomGenerator {
p, V = V, f != V
..
}
class Predicategenerator {
p, p(f), p(V, f)
..
}
class FunctorGenerator {
f, f(f), f(V), f(f(f))
..
}
class VariableGenerator {
V1, V2
..
}
@enduml
|
da7a7ae370ab76b0027887829882288ae2de4e70 | e42cca016a0fa498fc3a9036d4b0ad1d534f616e | /test6/src/类图设计.puml | 0179639ab853805dd4cc74b71b6b63d8de4feb55 | [] | no_license | aywangyu/is_analysis | 7af80591a3691933139948d18bc23ae1ced6583a | 44ca62ccf8fe6f87760a171028a5d9fe1bc465f6 | refs/heads/master | 2022-01-07T10:26:13.222098 | 2019-05-08T08:22:49 | 2019-05-08T08:22:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,219 | puml | @startuml
title 基于GitHub的实验管理平台--类图
class users {
<b>user_id</b> (用户ID)
name (用户真实姓名)
github_username (用户GitHub账号)
update_date (用户GitHub账号修改日期)
password (用户密码)
disable (用户是否禁用)
}
class 管理员{
<b>admin_id</b> (管理员号)
}
class 老师{
<b>teacher_id</b> (老师工号)
department (老师所属部门)
}
class 学生{
<b>student_id</b> (学号)
class (班级)
result_sum(成绩汇总)
web_sum (网站正确与否汇总)
}
users <|-- 管理员
users <|--- 学生
users <|-- 老师
class 成绩 {
<b>student_id</b> (学号)
<b>test_id</b> (实验编号)
result (分数)
memo (评价)
update_date (评改日期)
}
class 课程{
<b>course_id</b> (课程号)
<b>course_name</b> (课程名)
teacher (授课老师)
update_date (开课日期)
}
class 实验 {
<b>test_id</b> (实验编号)
title (实验名称)
}
学生 "1" -- "n" 成绩
实验 "1" -- "n" 成绩
实验 "n" -- "1" 课程
学生 "n" -- "n" 课程
老师 "n" - "n" 课程
@enduml
|
cb0e5aaa4e61632ecc9af24dea15be7e6ab6c5ee | ca6796def41f24f410bcc30a208da57eaf745e76 | /docs/UML/mainwindow.iuml | d2af88a87da3461f40a06ff45c85b43205176977 | [] | no_license | JustKiddingCode/ASGProjekte | 0a55353ddc80c3a4eca29d184c51e683f9d0901b | c0f5ad4f696064ff1356473eb04de5f9e82906cf | refs/heads/master | 2021-01-20T22:28:17.044125 | 2014-12-24T15:04:19 | 2014-12-24T15:04:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 77 | iuml | class MainWindow {
algorithms : List of SolvingAlgorithm
openStatistic()
}
|
279692a5ac9551e84ae9e4241cd625656236623c | 33b6df0951f75457bca6c8ca4626ce19a183f919 | /diagrams/nodejsModule.puml | ebb05fa21091e2fb529d4fe03b7de619a0d9f3fe | [] | no_license | z1yuan/nodejs | 3b38621e3d325485605d7ba4e29e56605ca3c9b0 | b5e6ae60ff1732ace1ff158c7002a7f2ff9585b6 | refs/heads/master | 2020-07-28T19:30:52.278209 | 2019-09-27T01:49:42 | 2019-09-27T01:49:42 | 209,511,437 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,835 | puml | @startuml nodejsModule
skinparam classAttributeIconSize 0
/'set namespaceSeparator :: '/
/'set PLANTUML_LIMIT_SIZE=8192 '/
/'scale 2000 width '/
title
<b><Sequence Diagram>
Nodejs Module call process
end title
participant "node.js" as nodejs
participant "Function object\nNativeModule" as NativeModule
participant "NativeModule instance\nof module.js" as Module
participant "Function object\nModule" as FModule
participant "Module instance\nof parent.js" as pModule
participant "Module instance\nof child.js" as cModule
note right of nodejs
source code:
parent.js
var child = require("./child.js");
child.childfn();
child.js
function childfn() {
console.log("this is child")
}
module.exports.childfn = childfn;
execution:
node parent.js
end note
/'
note left of nodejs
class Module {
static Module._contextLoad
static Module._cache
static Module._pathCache
static Module._extensions
static Module.globalPaths
static Module.wrapper
static Module.wrap
static Module._debug
static Module._realpathCache
static Module.Module
+ id
+ parent
+ filename
+ loaded
+ children
+ paths
static Module._findPath(request, paths)
static Module._nodeModulePaths(from)
static Module._resolveLookupPaths(request, parent)
static Module._load(request, parent, isMain)
static Module._resolveFilename(request, parent)
static Module.runMain()
static Module._initPaths()
static Module.requireRepl()
+ Module.prototype.load(filename)
+ Module.prototype.require(path)
+ Module.prototype._compile(content, filename)
}
end note
'/
nodejs -> nodejs : init function startup
create NativeModule
nodejs -> NativeModule : init function NativeModule
nodejs <-- NativeModule
nodejs -> nodejs : startup()
activate nodejs
nodejs -> NativeModule : Module = NativeModule.require('module');
activate NativeModule
alt module cached
nodejs <- NativeModule : return cached.exports;
else module not cached
create Module
NativeModule -> Module : new NativeModule('modules')
Module -> Module : this.filename = 'modules.js';\nthis.id = 'modules';\nthis.exports = {};\nthis.loaded = false;
NativeModule <-- Module : return nativeModule // instance
NativeModule -> Module : nativeModule.cache()
NativeModule -> Module : nativeModule.compile()
activate Module
Module -> Module : source=NativeModule.wrap("module.js") \n//this step will wrap source context with a function:\n(function(exports, require, module, ~__filename, ~__dirname){\n context of modules.js\n})
Module -> Module : fn = runInThisContext(source, { filename: this.filename })\n//actuel run the wrapped source with nodejs buildin function\nvm.script.runInThisContext() and return a callable function fn
Module -> Module : execute function fn(this.exports, NativeModule.require, this, this.filename)\nwith parameter:\nfn(exports, require, module, ~__filename, ~__dirname)\nso that variables exports, require, module, ~__filename, ~__dirname\ncould be used inside of module.js directly.
activate Module
create FModule
Module -> FModule : execute module.js \n//initialize function Module. \n//Note, this is not new(), but just initialize a function object Module \nand its "class methods"
note right
This function object will always exist
due to has been referanced by node.js
more info please refer closure feature
end note
FModule -> FModule : var NativeModule = require('native_module');\nvar util = require('util');\nvar runInThisContext = require('vm').runInThisContext;\nvar runInNewContext = require('vm').runInNewContext;\nvar fs = require('fs');\n\nModule._cache = {};\n...
FModule -> FModule : module.exports = Module; \n//add export to instance nativeModule
Module <-- FModule
deactivate Module
Module -> Module : this.loaded = true
NativeModule <-- Module
deactivate Module
nodejs <- NativeModule : return nativeModule.exports \n//from now on node.js will get the initialized \nfunction"Module" from module.js as variable Module.
end
deactivate NativeModule
nodejs -> FModule : Module.runMain() \n//call Module's class methode runMain().\nThe main Main entry point to user program
activate FModule
FModule -> FModule : Module._load(request=process.argv[1], parent=null, isMain=true); \n// load your js file, i.e parent.js here
activate FModule
FModule -> FModule : var filename = Module._resolveFilename(request, parent);\nvar cachedModule = Module._cache[filename];\n//function Module maintains all required modules in its _cache object\nlike {filename:module instance}, everytime a module is required,\nModule function will check if it can be found in its _cache,\nif yes return module.export at once,\nelse create a new module instance.
alt cachedModule exist
FModule -> FModule : return cachedModule.exports;
else cachedModule do not exist
create pModule
FModule -> pModule : var module = new Module(id=filename, parent=parent);
note right
var child = require("./child.js")
child.childfn()
end note
pModule -> pModule : this.id = id;\nthis.exports = {};\nthis.parent = parent;
FModule <-- pModule : return module
FModule -> FModule : Module._cache[filename] = module;
FModule -> pModule : module.load(filename='parent.js');
activate pModule
pModule -> pModule : this.filename = filename;
FModule <- pModule : Module._extensions[extension](this, filename);
note left
Module._extensions['.js'] = function(module, filename) {
var content = fs.readFileSync(filename, 'utf8');
module._compile(stripBOM(content), filename);
};
end note
FModule --> pModule
pModule -> pModule : var content = fs.readFileSync(filename, 'utf8');\nmodule._compile(stripBOM(content), filename);
activate pModule
pModule -> pModule : var self = this;\ninitialize function require
FModule <- pModule : var wrapper = Module.wrap(content); \n//call class methode NativeModule.wrap\n//this step will wrap content context with a function:\n(function(exports, require, module, ~__filename, ~__dirname){\n context of content i.e parent.js\n})
FModule --> pModule : return wrapper
pModule -> pModule : var compiledWrapper = runInThisContext(wrapper, { filename: filename });\nvar args = [self.exports, require, self, filename, dirname];\nreturn compiledWrapper.apply(self.exports, args);
activate pModule
pModule -> pModule : execute\nfunction (module.exports, require, module, ~__filename, ~__dirname){\n var child = require("./child.js");\n child.childfn()\n}\nso that variables module.exports, require, module, ~__filename, ~__dirname\ncould be used inside of module.js directly.
activate pModule
pModule -> pModule : var child = require("./child.js")
activate pModule
FModule <- pModule : Module._load(path='./child.jsi', this);\n//call Module's class methode _load()
activate FModule
alt if is cachedModule
FModule -> pModule : return cachedModule.exports;
else required module not cached
create cModule
FModule -> cModule : var module = new Module(filename, parent);
FModule <-- cModule : return module
FModule -> cModule : module.load(filename);
cModule -> cModule : load process again with ._compile
FModule <-- cModule :
FModule -> pModule : return module.exports;
end
deactivate FModule
deactivate pModule
pModule -> pModule : child.childfn() \n// child.childfn() could be used from now on.
deactivate pModule
deactivate pModule
FModule <-- pModule :
deactivate pModule
FModule -> FModule : return module.exports;
deactivate FModule
end
nodejs <-- FModule
deactivate FModule
deactivate nodejs
@enduml |
41520b63e1431d186c800ddd28ba952d6b9159c6 | 622c008212ad81846b9e5fbf6ac5ea98d4a442c9 | /src/com/principle/uml/dependence/dependence.puml | 2a3d44a3418631a170dd7e21f59289d145aece6f | [] | no_license | YangLiuQing-star/design-pattern | a6561cf5113128be355ec118807c2c0c6206bad7 | 2823c77e317a1de922142590166f784966f0b152 | refs/heads/master | 2022-12-27T21:23:56.249453 | 2020-10-13T13:49:25 | 2020-10-13T13:49:25 | 303,718,595 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 342 | puml | @startuml
title:依赖 ..>
class Person
class PersonDao
class IDCard
class Department
class PersonServiceBean{
personDao:PersonDao
save(Person person):void
getIDCard():IDCard
modify():void
}
PersonServiceBean ..> Person
PersonServiceBean ..> PersonDao
PersonServiceBean ..> IDCard
PersonServiceBean ..> Department
@enduml |
e514d0eee760c77155ba29acb708efb1e38114b6 | 015af2febe164b9667ae91319080ed064c132b0e | /qnl/key-routing-service/key-routing-service.plantuml | b3dbe7aa145192254753b40987dfce2dd2ade04e | [
"MIT"
] | permissive | crazoter/qkd-net | fb247b3a122821451a64ea587619926d9571444c | 182860ec031bf066fd3a9fa60d6d3629b4d37899 | refs/heads/master | 2022-08-25T23:32:53.109504 | 2020-05-20T02:25:20 | 2020-05-20T02:25:20 | 263,811,400 | 1 | 0 | null | 2020-05-14T04:05:04 | 2020-05-14T04:05:04 | null | UTF-8 | PlantUML | false | false | 3,105 | plantuml | @startuml
title __KEY-ROUTING-SERVICE's Class Diagram__\n
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyClientRouterInitializer {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyRouter {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyRouterBackendHandler {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyRouterConnectHandler {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyRouterFrontendHandler {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.KeyServerRouterInitializer {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.OTPKey {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.QNLConfig {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.QNLConfiguration {
}
}
namespace com.uwaterloo.iqc.qnl {
class com.uwaterloo.iqc.qnl.RouteConfig {
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPIncomingClientHandler {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPMessage {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPMessageDecoder {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPMessageEncoder {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPOutgoingClientHandler {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPOutgoingClientInitializer {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPRouter {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.LSRPServerRouterInitializer {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.Neighbour {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace lsrp {
class com.uwaterloo.iqc.qnl.lsrp.Node {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace qll {
class com.uwaterloo.iqc.qnl.qll.QLLFileReader {
}
}
}
namespace com.uwaterloo.iqc.qnl {
namespace qll {
interface com.uwaterloo.iqc.qnl.qll.QLLReader {
}
}
}
com.uwaterloo.iqc.qnl.lsrp.LSRPRouter o-- com.uwaterloo.iqc.qnl.lsrp.LSRPRouter.DijkstraRunnable : testRunnable
com.uwaterloo.iqc.qnl.qll.QLLFileReader .up.|> QLLReader
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
0d87e6ac3b63ff2fd38d1eeb81d4f2a602a8c74c | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P2/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/integration/junit4/junit4.plantuml | 646ada7890df837172c70e5bd15bac5141a7aeed | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,223 | plantuml | @startuml
title __JUNIT4's Class Diagram__\n
package spec.concordion {
package spec.concordion.integration {
package spec.concordion.integration.junit4 {
class Foo {
+ Foo()
+ dummyTest()
}
}
}
}
package spec.concordion {
package spec.concordion.integration {
package spec.concordion.integration.junit4 {
class FooFixture {
+ FooFixture()
}
}
}
}
package spec.concordion {
package spec.concordion.integration {
package spec.concordion.integration.junit4 {
class FooFixtureRecorder {
{static} - fooFixtureClass : String
{static} + getFooFixtureClass()
{static} + setFooFixtureClass()
}
}
}
}
package spec.concordion {
package spec.concordion.integration {
package spec.concordion.integration.junit4 {
class FooTest {
+ FooTest()
+ dummyTest()
}
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
a2c9c4a2dc24a60e67d79cf15af8c47869a8c363 | c6c72378a47a34ea7f975cfddd0f6daba6b3b4d2 | /ch02/excercise/2-1.puml | ce68ee501322f349f6991d78b61d07b0d0a01de2 | [] | no_license | yinm/uml-modeling-lesson | 323b45e8bd926ac0b0f94a024bfd6f20a7872d17 | 0bc65be5ee9e957d3627cb9a5986a8ac9a17744c | refs/heads/master | 2020-04-16T10:38:27.352993 | 2019-01-30T12:37:18 | 2019-01-30T12:37:18 | 165,511,559 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 106 | puml | @startuml
class 社員 {
姓
名
性別
生年月日
社員番号
入社年月日
}
@enduml
|
8a59987ff463a2c2ec7880cd64f118b0004999c3 | 36e8e37a895ba9b2666e81c1da40f7fd0580d37b | /src/javaLang/singleTons/单例模式类图.puml | 2a2816c4f850292512ef11dd79c3ce585271510f | [] | no_license | xhSun9527/DesignPatterns | 0b08185780882a8e1b7e065c39a44e7c19838e17 | 1ed5099b9156853601e6b3a9cdf0c1d6090a6812 | refs/heads/master | 2023-02-01T06:22:45.580510 | 2020-12-17T08:55:19 | 2020-12-17T08:55:19 | 287,001,208 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 137 | puml | @startuml
class Client{}
class SingleTon{
- SingleTon()
+ getInstance() : SingleTon
}
SingleTon <.. Client : <<use>>
@enduml |
afb56f72d3ac6a371c3442d23e0f3e9a65fb20f6 | ed160782ff6013bb6dc5e26c388b04982bc6a04c | /Client/src/Util/Util.plantuml | c7487c0aeb754936a68947039366505270cf4b24 | [] | no_license | sherifawad/bankSystemNoSteg | bdf5a04bc05253f806a7dca8cc74bc6dece929d2 | 075f6b4c35cb497587bc2e6df5d7bf09cf07f730 | refs/heads/master | 2022-11-27T06:12:05.257346 | 2020-08-07T12:43:57 | 2020-08-07T12:43:57 | 285,826,736 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,171 | plantuml | @startuml
title __UTIL's Class Diagram__\n
package Util {
class Consts {
{static} + COVER_IMAGE : int
{static} + SECRET_IMAGE : int
{static} + SHARED_PREF_NAME : String
{static} + PREF_COVER_PATH : String
{static} + PREF_COVER_IS_SET : String
{static} + MESSAGE_TYPE : String
{static} + MESSAGE_BITS : String
{static} + TYPE_TEXT : int
{static} + TYPE_IMAGE : int
{static} + TYPE_UNDEFINED : int
{static} + EXTRA_STEGO_IMAGE_PATH : String
{static} + EXTRA_SECRET_TEXT_RESULT : String
{static} + EXTRA_SECRET_IMAGE_RESULT : String
{static} + COLOR_RGB_END : Color
{static} + COLOR_RGB_TEXT : Color
{static} + COLOR_RGB_IMAGE : Color
{static} + PASSES : boolean
{static} + FAILS : boolean
{static} + SUCCESS : boolean
{static} + FAILURE : boolean
{static} + NOT_FOUND : int
{static} + NEW_LINE : String
{static} + FILE_SEPARATOR : String
{static} + PATH_SEPARATOR : String
{static} + EMPTY_STRING : String
{static} + SPACE : String
{static} + TAB : String
{static} + SINGLE_QUOTE : String
{static} + PERIOD : String
{static} + DOUBLE_QUOTE : String
{static} + PORT : int
{static} + SERVER_NAME : String
- Consts()
}
}
package Util {
class Uty {
{static} + zip()
{static} + unZipIt()
{static} + bytesHash()
{static} + byteConcatenate()
{static} + WriteMapToFile()
{static} + writeByteToFile()
{static} + fileToMap()
{static} + remove()
+ bigToarray()
+ arrayTobig()
{static} + byteToMap()
{static} + xorWithKey()
{static} + randomBig()
{static} ~ concatenate()
{static} + serialize()
{static} + deserialize()
{static} + writeImgToFile()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
f6fc954a7a57c016ae3618dbae8c2b408ecb60f7 | 01cb5dea2df442ad2bf4b3e7122ebb1355459cab | /simi/doc/puml/src/simi_ccc.puml | 9378d109dc0067401b9165b4ac5535eb8f71ee34 | [
"MIT"
] | permissive | Luescher/simi | a48b0cc5abe59087b6e9a017c09470e4f3d550f6 | addabd782a82171b0afdedc4ad3cb643b1923ee6 | refs/heads/master | 2022-11-27T07:20:07.996250 | 2020-07-28T15:18:19 | 2020-07-28T15:18:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 333 | puml | @startuml
package "Core" {
class "SingleLayer (SL)" as sl{}
class "Map (Map)" as map {}
}
package "CCC Client" {
class "CCC Client" as ccc {}
class "Locator Layer" as ll {}
class "Notify Layer" as nl {}
ccc "*" -- "1" map
ccc "1" -- "*" ll
ll "*" -- "1" sl
ccc "1" -- "*" nl
nl "*" -- "1" sl
}
@enduml |
15a1b050ebce3fc160d8f9ba08a975b7773eaf08 | 7c738fd68e823c4457669c44149241e1fff5f592 | /UML/uml-client.plantuml | 282b515ccbbec4f96a93c9a1937b500f8dfa09f3 | [] | no_license | CoziestYew804/Serveur-Client-Dessin | 641f61bd56116beabbf4a0d3d8da2c1475700957 | 4caf67fddb48ae1c6650659beb5a9ec46381126e | refs/heads/master | 2021-04-26T23:07:29.224960 | 2018-03-05T14:47:46 | 2018-03-05T14:47:46 | 123,933,944 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,456 | plantuml | @startuml
package Utils {
class Color {
-unsigned char _red
-unsigned char _green
-unsigned char _blue
+Color(unsigned char red, unsigned char green, unsigned char blue)
+Color(const Color & color);
+{static} void initColorMap();
+{static} Color getColor(const string & color);
+unsigned char getRed() const
+unsigned char getGreen() const
+unsigned char getBlue() const
}
class UtilsException
}
package Shape {
abstract class Shape {
+Shape(const Color & color = Color::getColor("black"))
+{abstract} draw(const DrawingVisitor* visitor)
+{abstract} operator string()
+{abstract} save(const SaveVisitor* saveVisitor, const string & filename)
+{abstract} Shape *translation(Vector2D translationVector) : Shape*
+{abstract} Shape* homothétie(const Vector2D & invariantPoint, const double & homothetyRatio) : Shape*
+{abstract} Shape* rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle)
+{abstract} double getArea()
+setColor(const Color & color)
+Color getColor()
}
abstract class ComposedShape {
+draw(DrawingVisitor* visitor)
+toString() : String
+save(SaveVisitor* saveVisitor, const string & filename)
+translation(Vector2D translationVector)
+homothétie(const Vector2D & invariantPoint,
const double & homothetyRatio)
+rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle)
+getArea()
}
class Cercle {
-double _diameter
+Circle(const Vector2D & center, const double & diameter,
const Color & color = Color::getColor("black"));
+void draw(const DrawingVisitor* visitor) const;
+void save(const SaveVisitor* saveVisitor, const string & filename) const;
+Shape* translation(const Vector2D & translationVector) const;
+Shape* homothety(const Vector2D & invariantPoint,
const double & homothetyRatio) const;
+Shape* rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle) const;
+double getArea() const;
}
class Segment {
+Segment(const Vector2D & firstPoint, const Vector2D & secondPoint,
const Color & color = Color::getColor("black"));
+void draw(const DrawingVisitor* visitor) const;
+void save(const SaveVisitor* saveVisitor, const string & filename) const;
+Shape* translation(const Vector2D & translationVector) const;
+Shape* homothety(const Vector2D & invariantPoint,
const double & homothetyRatio) const;
+Shape* rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle) const;
+double getArea() const;
}
class Triangle {
+Triangle(const Vector2D & firstPoint, const Vector2D & secondPoint,
const Vector2D & thirdPoint, const Color & color = Color::getColor("black"));
+void draw(const DrawingVisitor* visitor) const;
+void save(const SaveVisitor* saveVisitor, const string & filename) const;
+Shape* translation(const Vector2D & translationVector) const;
+Shape* homothety(const Vector2D & invariantPoint,
const double & homothetyRatio) const;
+Shape* rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle) const;
+double getArea() const;
}
class Polygone {
+Polygon(const Color & color = Color::getColor("black"));
+void addPoint(const Vector2D & point);
+void draw(const DrawingVisitor* visitor) const;
+void save(const SaveVisitor* saveVisitor, const string & filename) const;
+Shape* translation(const Vector2D & translationVector) const;
+Shape* homothety(const Vector2D & invariantPoint,
const double & homothetyRatio) const;
+Shape* rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle) const;
+double getArea() const;
}
}
package Network {
class Socket << Singleton >> {
-{static} Socket* _instance: Socket
-{static} string _serverAddress
-{static} int _serverPort
-{static} int _sock
-{static} sockaddr_in _socketAddress
-Socket()
+{static} const Socket* getInstance()
+{static} void createConnexion()
+{static} void sendRequest(const string & request)
+{static} string receiveData()
+{static} closeSocket()
}
class NetworkException
Socket *-- "1" Socket
}
package Visitor {
abstract class DrawingVisitor {
+{abstract} draw(Cercle *s)
+{abstract} draw(Segment *s)
+{abstract} draw(Triangle *s)
+{abstract} draw(Polygone *s)
+{abstract} draw(Shape *s)
}
abstract class SaveVisitor {
+{abstract} save(const Cercle *s, const string & filename)
+{abstract} save(const Segment *s, const string & filename)
+{abstract} save(const Triangle *s, const string & filename)
+{abstract} save(const Polygone *s, const string & filename)
+{abstract} save(const Shape *s, const string & filename)
}
class ServerDrawer {
+ServerDrawer()
+draw(Cercle *s)
+draw(Segment *s)
+draw(Triangle *s)
+draw(Polygone *s)
+draw(Shape *s)
}
class SaveTextVisitor {
+save(const Cercle *s, const string & filename)
+save(const Segment *s, const string & filename)
+save(const Triangle *s, const string & filename)
+save(const Polygone *s, const string & filename)
+save(const Shape *s, const string & filename)
}
SaveVisitor <|-- SaveTextVisitor
DrawingVisitor <|-- ServerDrawer
}
package Loader {
abstract class ShapeLoader {
+ShapeLoader(const ShapeCreator* shapeCreator)
+{abstract} load()
}
class ShapeLoaderLink {
+ShapeLoaderLink(ShapeLoaderCOR* next, const ShapeCreator* shapeCreator)
+load()
+{abstract}loadShape()
}
class ShapeLoaderText {
+ShapeLoaderText(ShapeLoaderLink* next, const ShapeCreator* shapeCreator)
+loadShape()
}
abstract class ShapeCreator {
+{abstract} const Shape* createShape(const string & shapeString) const
}
class ShapeCreatorLink {
+ShapeCreatorLink(const ShapeCreatorLink* next)
+const Shape* createShape(const string & shapeString) const
+{abstract} const Shape* createShapeSpe(const string & shapeString) const
}
class SegmentCreator {
+const Shape* createShapeSpe(const string & shapeString) const
}
class CircleCreator {
+const Shape* createShapeSpe(const string & shapeString) const
}
class PolygonCreator {
+const Shape* createShapeSpe(const string & shapeString) const
}
ShapeLoader <|-- ShapeLoaderLink
ShapeLoader o-- "1" ShapeCreator
ShapeLoaderLink o-- "1" ShapeLoaderLink : next
ShapeLoaderLink <|-- ShapeLoaderText
ShapeCreator <|-- ShapeCreatorLink
ShapeCreatorLink <|-- SegmentCreator
ShapeCreatorLink <|-- CircleCreator
ShapeCreatorLink <|-- PolygonCreator
ShapeCreatorLink o-- "1" ShapeCreatorLink : next
}
package Geometry {
class Vector2D {
-double _x
-double _y
+const Vector2D operator+()
+const Vector2D operator*()
+const Vector2D operator-()
+const Vector2D operator+=()
+const Vector2D operator*=()
+const Vector2D operator-=()
+string()
+void translation(const Vector2D & translationVector)
+void homothety(const Vector2D & invariantPoint,
const double & homothetyRatio)
+void rotation(const Vector2D & rotationCenter,
const RadianAngle & rotationAngle);
}
class RadianAngle {
-double _value
+RadianAngle(const double & value);
+void setValue(const double & value);
+double getValue() const;
}
class GeometryException
}
Shape *-- "1" Color : _color
Shape <|-- Cercle
Shape <|-- Segment
Polygone <|-- Triangle
Shape <|-- Polygone
ComposedShape o-- "1, N" Shape
Shape <|-- ComposedShape
Cercle o--> "1" Vector2D
Segment o--> "2" Vector2D
Triangle o--> "3" Vector2D
Polygone o--> "3, N" Vector2D
@enduml
|
396f1e086e6fb7c24b3efa1fb8fbf126e4f067fd | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test/java/spec/concordion/specificationType/markdown/markdown.plantuml | 495b2edadc489d4dc6e7b0188b4489072d8de9c8 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,434 | plantuml | @startuml
title __MARKDOWN's Class Diagram__\n
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownAssertEqualsCommandFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownExampleCommandFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownExecuteCommandFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownGrammarFixture {
~ markdownParser : MarkdownParser
+ MarkdownGrammarFixture()
+ translate()
+ foo()
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownRunCommandFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownSetCommandFixture {
}
}
}
}
package spec.concordion {
package spec.concordion.specificationType {
package spec.concordion.specificationType.markdown {
class MarkdownVerifyRowsCommandFixture {
}
}
}
}
MarkdownAssertEqualsCommandFixture -up-|> MarkdownGrammarFixture
MarkdownExampleCommandFixture -up-|> MarkdownGrammarFixture
MarkdownExecuteCommandFixture -up-|> MarkdownGrammarFixture
MarkdownRunCommandFixture -up-|> MarkdownGrammarFixture
MarkdownSetCommandFixture -up-|> MarkdownGrammarFixture
MarkdownVerifyRowsCommandFixture -up-|> MarkdownGrammarFixture
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
ce5b45a8da7b89bd7f15acd3ea41a2723e488d1f | 60f727df8e45682d04583eb91ac93bbc2bf69a4f | /docs/model.puml | 806e1e4648eda8d96622203ba37bfbd40995aa0c | [
"Apache-2.0"
] | permissive | Mark-Kovalyov/mtn-meta-collector | 9040f1f52689b669df36e2d30b0dfef54dc833a8 | 9dae48be3ec3390df6a8cf5871a17473807d0e98 | refs/heads/main | 2023-05-05T04:35:06.274077 | 2021-05-25T13:39:28 | 2021-05-25T13:39:28 | 342,966,090 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,085 | puml | @startuml
interface org.apache.jena.rdf.model.Model {
+ getGraph()
}
interface org.apache.jena.rdf.model.InfModel extends org.apache.jena.rdf.model.Model {
}
interface org.apache.jena.ontology.OntModel extends org.apache.jena.rdf.model.InfModel {
}
interface org.apache.jena.rdf.model.ModelCon
class org.apache.jena.enhanced.EnhGraph
class org.apache.jena.rdf.model.impl.ModelCom
interface org.apache.jena.graph.Graph
interface org.apache.jena.rdf.model.Resource
interface org.apache.jena.rdf.model.Seq
interface org.apache.jena.rdf.model.Property
interface org.apache.jena.graph.FrontsNode
interface org.apache.jena.graph.RDFNode
org.apache.jena.graph.FrontsNode <|-- org.apache.jena.graph.RDFNode
org.apache.jena.graph.RDFNode <|-- org.apache.jena.rdf.model.Resource
org.apache.jena.rdf.model.Resource <|-- org.apache.jena.rdf.model.Seq
org.apache.jena.rdf.model.Resource <|-- org.apache.jena.rdf.model.Property
org.apache.jena.rdf.model.ModelCon <|-- org.apache.jena.rdf.model.Model
org.apache.jena.enhanced.EnhGraph <|-- org.apache.jena.rdf.model.impl.ModelCom
@enduml
|
fde8a41c1c2642b440494c7b19ff43f94cb028f3 | 96d48952312778fe2c57b273f826bd9bd6d2396c | /Sample/Class/AdvancedClassBody.puml | abbc42aa1748d855c97cbd1f0bf85a5e1bcfbdd0 | [
"Apache-2.0"
] | permissive | MathB/PlantUML-NB | d757f6ef77f749eda5e6e9998ee6a3f7f25133eb | 2a63699858c5074714fca3af286ae542a32142bd | refs/heads/master | 2021-01-10T16:19:50.268639 | 2014-06-02T06:51:59 | 2014-06-02T06:51:59 | 44,731,558 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | puml | @startuml
class Foo1 {
You can use
several lines
..
as you want
and group
==
things together.
__
You can have as many groups
as you want
--
End of class
}
class User {
.. Simple Getter ..
+ getName()
+ getAddress()
.. Some setter ..
+ setName()
__ private data __
int age
-- crypted --
String password
}
@enduml |
e961aa9c2006efd4d74523c677d08f50fdf0b268 | 01cf293a1b781ae355c4c8eb8409a6e1c85428e9 | /5.ClienteServidor/docs/diagrams/src/Analisis/paquetesModels.plantuml | 945072956df4d35db58f7fae0da7fb2e656afd3a | [] | no_license | EnriqueCF/requirements | fe59445d677f9bae4262950cbd9ab61688e90013 | 8afdff6df115f97585ff980abe253d4da387de90 | refs/heads/master | 2023-06-13T23:42:22.698560 | 2021-07-11T18:59:59 | 2021-07-11T18:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,801 | plantuml | @startuml modelspackage
class Coordinate as "types.\nCoordinate"
enum Error as "types.\nError"
enum Color as "types.\nColor"
class models.Board{
~reset()
~isTicTacToe(): boolean
~getColor(Coordinate): Color
~undoable(): boolean
~undo()
~redoable(): boolean
~redo()
}
class models.Game{
+reset()
+areAllTokensOnBoard(): boolean
+putToken(Coordinate)
+getPutTokenError(Coordinate): Error
+moveToken(Coordinate, Coordinate)
+getOriginMoveTokenError(Coordinate): Error
+getTargetMoveTokenError(Coordinate, Coordinate): Error
+next()
+getActiveColor(): Color
+isTicTacToe(): boolean
+getColor(Coordinate): Color
+undoable(): boolean
+undo()
+redoable(): boolean
+redo()
}
class models.Player{
~getColor(): Color
~areAllTokensOnBoard(): boolean
~putToken(Coordinate)
~getPutTokenError(Coordinate): Error
~moveToken(Coordinate, Coordinate)
~getOriginMoveTokenError(Coordinate): Error
~getTargetMoveTokenError(Coordinate, Coordinate): Error
}
class models.Turn{
~reset()
~next()
~getActiveColor(): Color
~areAllTokensOnBoard(): boolean
~putToken(Coordinate)
~getPutTokenError(Coordinate): Error
~moveToken(Coordinate, Coordinate)
~getOriginMoveTokenError(Coordinate): Error
~getTargetMoveTokenError(Coordinate, Coordinate): Error
}
models.Game *-down-> models.Turn
models.Game *-down-> models.Board
models.Turn *-down-> models.Player
models.Turn ..> Coordinate
models.Player ..> Coordinate
models.Player --> models.Board
models.Board *-down-> Color
models.Turn ..> Color
models.Game ..> Color
models.Board ..> Coordinate
models.Player --> Color
models.Player ..> Error
models.Turn ..> Error
models.Game ..> Error
models.Game ..> Coordinate
@enduml |
f3dd806fed5bb9b1ca537af398753e3ca91f1a72 | 1ac0a5cf0a74b207d7cdac817f81b15f452f494c | /Livrables/Diagrammes/Composants/UML/Square.plantuml | 010d86f8f8bb5f9763c9dd96f09b5eef5558e298 | [
"MIT"
] | permissive | HugoLA1/Projet-programmation-systeme | 1f143b71a52871ca3536b30d78592c29f19aae97 | 5262fa64cd862283078346b4f8a2aa69246d47d6 | refs/heads/master | 2020-06-01T10:33:49.688170 | 2018-12-13T13:22:55 | 2018-12-13T13:22:55 | 190,750,176 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 181 | plantuml | @startuml
class Square {
+ lines : List<Line> <<get>> <<set>>
+ squareSupervisors : List<SquareSupervisor> <<get>> <<set>>
+ posX : int
+ Square(posX:int)
}
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.