From 8d4778cd07dcb03f3f10299a3caa8cf83e662be6 Mon Sep 17 00:00:00 2001 From: Marek Gulawski Date: Wed, 20 Jan 2021 10:39:18 +0100 Subject: [PATCH] =?UTF-8?q?Prze=C5=9Blij=20pliki=20do=20''?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generation_settings | 332 ++++++++++++ idl_includes | 1 + java_imports | 1 + models.prj | 1171 +++++++++++++++++++++++++++++++++++++++++++ python_imports | 1 + 5 files changed, 1506 insertions(+) create mode 100644 generation_settings create mode 100644 idl_includes create mode 100644 java_imports create mode 100644 models.prj create mode 100644 python_imports diff --git a/generation_settings b/generation_settings new file mode 100644 index 0000000..2fa5995 --- /dev/null +++ b/generation_settings @@ -0,0 +1,332 @@ + + + cpp_h_extension "h" cpp_src_extension "cpp" cpp_h_add_extensions "" cpp_src_add_extensions "" java_extension "java" php_extension "php" python_extension "py" idl_extension "idl" + cpp_inline_dont_force_incl_in_h + + type_forms 15 // uml cpp java idl cpp_in cpp_out cpp_inout cpp_return + "void" "void" "void" "void" "${type}" "${type} &" "${type}" "${type}" + "any" "void *" "Object" "any" "const ${type}" "${type}" "${type} &" "${type}" + "bool" "bool" "boolean" "boolean" "${type}" "${type} &" "${type} &" "${type}" + "char" "char" "char" "char" "${type}" "${type} &" "${type} &" "${type}" + "uchar" "unsigned char" "char" "octet" "${type}" "${type} &" "${type} &" "${type}" + "byte" "unsigned char" "byte" "octet" "${type}" "${type} &" "${type} &" "${type}" + "short" "short" "short" "short" "${type}" "${type} &" "${type} &" "${type}" + "ushort" "unsigned short" "short" "unsigned short" "${type}" "${type} &" "${type} &" "${type}" + "int" "int" "int" "long" "${type}" "${type} &" "${type} &" "${type}" + "uint" "unsigned int" "int" "unsigned long" "${type}" "${type} &" "${type} &" "${type}" + "long" "long" "long" "long" "${type}" "${type} &" "${type} &" "${type}" + "ulong" "unsigned long" "long" "unsigned long" "${type}" "${type} &" "${type} &" "${type}" + "float" "float" "float" "float" "${type}" "${type} &" "${type} &" "${type}" + "double" "double" "double" "double" "${type}" "${type} &" "${type} &" "${type}" + "string" "string" "String" "string" "${type}" "${type} &" "${type} &" "${type}" + + relations_stereotypes 5 // uml cpp java pythonidl + "sequence" "vector" "Vector" "list" "sequence" + "vector" "vector" "Vector" "list" "sequence" + "list" "list" "List" "list" "sequence" + "set" "set" "Set" "set" "sequence" + "map" "map" "Map" "dict" "sequence" + + classes_stereotypes 17 // uml cpp java php python idl + "class" "class" "class" "class" "class" "valuetype" + "trait" "class" "class" "trait" "class" "valuetype" + "interface" "class" "interface" "interface" "class" "interface" + "exception" "class" "class" "class" "class" "exception" + "enum" "enum" "enum" "enum" "enum" "enum" + "enum_class" "enum_class" "enum" "enum" "enum" "enum" + "enum_pattern" "enum" "enum_pattern" "enum" "enum" "enum" + "struct" "struct" "class" "class" "class" "struct" + "union" "union" "class" "class" "class" "union" + "typedef" "typedef" "ignored" "ignored" "ignored" "typedef" + "template_typedef" "template_typedef" "ignored" "ignored" "ignored" "ignored" + "boundary" "class" "class" "class" "class" "interface" + "control" "class" "class" "class" "class" "valuetype" + "entity" "class" "class" "class" "class" "valuetype" + "actor" "ignored" "ignored" "ignored" "ignored" "ignored" + "@interface" "ignored" "@interface" "ignored" "ignored" "ignored" + "stereotype" "ignored" "ignored" "ignored" "ignored" "ignored" + + cpp_enum_default_type_forms "${type}" "${type} &" "${type} &" "${type}" // in out inout return + other_cpp_types_default_type_forms "const ${type} &" "${type} &" "${type} &" "${type}" // in out inout return + + cpp_default_h_content "#ifndef ${NAMESPACE}_${NAME}_H +#define ${NAMESPACE}_${NAME}_H + +${comment} +${includes} +${declarations} +${namespace_start} +${definition} +${namespace_end} +#endif +" + cpp_default_src_content "${comment} +${includes} +${namespace_start} +${members} +${namespace_end}" + cpp_default_class_decl "${comment}${template}class ${name}${inherit} { +${members}}; +${inlines} +" + cpp_default_external_class_decl "${name} +#include <${name}.h> +" + cpp_default_struct_decl "${comment}${template}struct ${name}${inherit} { +${members}}; +${inlines} +" + cpp_default_union_decl "${comment}${template}union ${name} { +${members}}; +${inlines} +" + cpp_default_enum_decl "${comment}enum ${name} { +${items}}; +" + cpp_default_enumclass_decl "${comment}enum class ${name} { +${items}}; +" + cpp_default_typedef_decl "${comment}typedef ${type} ${name}; +"cpp_default_template_typedef_decl "${comment}${template}using ${name} = ${inherit}; +" + cpp_default_attribute_declaration " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} ${name}${value}; +" // multiplicity 1 + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${stereotype}<${type}> ${name}${value}; +" // multiplicity * a..b + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} ${name}${multiplicity}${value}; +" // multiplicity [..] + cpp_default_enum_item_declaration " ${name}${value},${comment}" + cpp_association_aggregation_declaration + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} * ${name}${value}; +" // multiplicity 1 + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${stereotype}<${type} *> ${name}${value}; +" // multiplicity * a..b + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} * ${name}${multiplicity}${value}; +" // multiplicity [..] + cpp_aggregation_by_value_declaration + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} ${name}${value}; +" // multiplicity 1 + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${stereotype}<${type}> ${name}${value}; +" // multiplicity * a..b + " ${comment}${static}${thread_local}${mutable}${volatile}${const}${type} ${name}${multiplicity}${value}; +" // multiplicity [..] + cpp_get "get_${name}" inline const value_const public + cpp_set "set_${name}" public + cpp_default_operation_declaration " ${comment}${friend}${static}${inline}${virtual}${typeprefix}${type} ${name}${(}${)}${const}${volatile}${throw}${abstract}; +" + cpp_default_operation_definition "${comment}${inline}${typeprefix}${type} ${class}::${name}${(}${)}${const}${volatile}${throw}${staticnl}{ + ${body}} +" + cpp_indent_visibility " " cpp_indent_friendclass " " cpp_indent_subclass " " + java_default_src_content "${comment} +${package} +${imports} +${definition}" + java_default_class_decl "${comment}${@}${visibility}${static}${final}${abstract}class ${name}${extends}${implements} { +${members}} +" + java_default_external_class_decl "${name}" + java_default_interface_decl "${comment}${@}${visibility}${static}interface ${name}${extends} { +${members}} +" + java5_default_enum_decl "${comment}${@}${visibility}${static}${final}${abstract}enum ${name}${implements} { +${items}; +${members}} +" + java_default_enum_decl "${comment}${@}${visibility}${static}$final class ${name} { +${members} + private final int value; + + public int value() { + return value; + } + + public static ${name} fromInt(int value) { + switch (value) { +${cases} default: throw new Error(); + } + + } + private ${name}(int v) { value = v; }; +} +" + java_default_attribute_declaration " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${type} ${name}${value}; +" // multiplicity 1 + " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${stereotype}<${type}> ${name}${value}; +" // multiplicity * a..b + " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${type}${multiplicity} ${name}${value}; +" // multiplicity N + java5_default_enum_item_declaration " ${@}${name}${value},${comment}" + java_default_enum_item_declaration " ${comment}${@}public static final int _${name}${value}; +public static final ${class} ${name} = new ${class}(_${name}); +" + java_default_enum_case " case _${name}: return ${name}; +" + java_association_aggregation_declaration + " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${type} ${name}${value}; +" // multiplicity 1 + " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${stereotype}<${type}> ${name}${value}; +" // multiplicity * a..b + " ${comment}${@}${visibility}${static}${final}${transient}${volatile}${type}${multiplicity} ${name}${value}; +" // multiplicity N + java_get "get${Name}" final public + java_set "set${Name}" public + java_default_operation_definition " ${comment}${@}${visibility}${final}${static}${abstract}${synchronized}${type} ${name}${(}${)}${throws}${staticnl}{ + ${body}} +" + php_default_src_content " +" + php_default_class_decl "${comment}${final}${abstract}class ${name}${extends}${implements} { +${members}} +" + php_default_enum_decl "${comment}${visibility}final class ${name} { +${items}} +" + php_default_external_class_decl "${name}" + php_default_interface_decl "${comment}interface ${name}${extends} { +${members}} +" + php_default_trait_decl "${comment}trait ${name} { +${members}} +" + php_default_attribute_declaration " ${comment}${visibility}${const}${static}${var}${name}${value}; +" + php_default_enum_item_decl " const ${name}${value};${comment} +" + php_default_relation_declaration" ${comment}${visibility}${const}${static}${var}${name}${value}; +" + php_get "get${Name}" final + php_set "set${Name}" + php_default_operation_definition " ${comment}${final}${visibility}${abstract}${static}function ${name}${(}${)}${type} +{ + ${body}} +" + php_param_typed php_out_inout_by_ref python_2_2 + python_indent_step " " + python_default_src_content "${comment} +${import} +${definition}" + python_default_class_decl "class ${name}${inherit}: +${docstring}${members} +" + python_default_enum_decl "class ${name}: +${docstring}${members} +" + python_default_external_class_decl "${name}" + python_default_attribute_declaration "${comment}${self}${name} = ${value} +" // multiplicity 1 + "${comment}${self}${name} = ${stereotype}() +" // multiplicity != 1 + python_default_enum_item_decl "${comment}${self}${name} = ${value} +" + python_default_relation_declaration"${comment}${self}${name} = ${value} +" // multiplicity 1 + "${comment}${self}${name} = ${stereotype}() +" // multiplicity != 1 + python_default_composition_declaration"${comment}${self}${name} = ${type}() +" // multiplicity 1 + "${comment}${self}${name} = ${stereotype}() +" // multiplicity != 1 + python_default_operation_definition "${@}${static}${abstract}def ${name}${(}${)}: +${docstring}${body} +" + python_default_initoperation_definition "${@}${static}${abstract}def ${name}${(}${p0}${v0}${)}: +${docstring}super(${class}, ${p0}).__init__() +${body} +" + python_get "get${Name}" + python_set "set${Name}" + idl_default_src_content "#ifndef ${MODULE}_${NAME}_H +#define ${MODULE}_${NAME}_H + +${comment} +${includes} +${module_start} +${definition} +${module_end} +#endif +" + idl_default_interface_decl "${comment}${abstract}${local}interface ${name}${inherit} { +${members}}; +" + idl_default_valuetype_decl "${comment}${abstract}${custom}valuetype ${name}${inherit} { +${members}}; +" + idl_default_struct_decl "${comment}struct ${name} { +${members}}; +" + idl_default_typedef_decl "${comment}typedef ${type} ${name}; +" + idl_default_exception_decl "${comment}exception ${name} { +${members}}; +" + idl_default_union_decl "${comment}union ${name} switch(${switch}) { +${members}}; +" + idl_default_enum_decl "${comment}enum ${name} { +${items}}; +" + idl_default_external_class_decl "${name} +#include \"${name}.idl\" +" + idl_default_attribute_declaration " ${comment}${readonly}${attribute}${type} ${name}; +" // multiplicity 1 + " ${comment}${readonly}${attribute}${stereotype}<${type}> ${name}; +" // multiplicity * a..b + " ${comment}${readonly}${attribute}${stereotype}<${type},${multiplicity}> ${name}; +" // multiplicity N + idl_default_valuetype_attribute_declaration " ${comment}${visibility}${type} ${name}; +" // multiplicity 1 + " ${comment}${visibility}${stereotype}<${type}> ${name}; +" // multiplicity * a..b + " ${comment}${visibility}${stereotype}<${type},${multiplicity}> ${name}; +" // multiplicity N + idl_default_const_declaration " ${comment}const ${type} ${name}${value}; +" // multiplicity 1 + " ${comment}const ${stereotype}<${type}> ${name}${value}; +" // multiplicity * a..b + " ${comment}const ${stereotype}<${type},${multiplicity}> ${name}${value}; +" // multiplicity N + idl_default_enum_item_declaration " ${name},${comment}" + idl_default_union_item_declaration " ${comment}case ${case} : ${readonly}${type} ${name};" // multiplicity 1 + " ${comment}case ${case} : ${readonly}${stereotype}<${type}> ${name};" // multiplicity * a..b + " ${comment}case ${case} : ${readonly}${stereotype}<${type},${multiplicity}> ${name};" // multiplicity N + idl_association_aggregation_declaration + " ${comment}${readonly}${attribute}${type} ${name}; +" // multiplicity 1 + " ${comment}${readonly}${attribute}${stereotype}<${type}> ${name}; +" // multiplicity * a..b + " ${comment}${readonly}${attribute}${stereotype}<${type},${multiplicity}> ${name}; +" // multiplicity N + idl_valuetype_association_aggregation_declaration + " ${comment}${visibility}${type} ${name}; +" // multiplicity 1 + " ${comment}${visibility}${stereotype}<${type}> ${name}; +" // multiplicity * a..b + " ${comment}${visibility}${stereotype}<${type},${multiplicity}> ${name}; +" // multiplicity N + idl_union_association_aggregation_declaration + " ${comment}case ${case} : ${readonly}${type} ${name};" // multiplicity 1 + " ${comment}case ${case} : ${readonly}${stereotype}<${type}> ${name};" // multiplicity * a..b + " ${comment}case ${case} : ${readonly}${stereotype}<${type},${multiplicity}> ${name};" // multiplicity N + idl_get "get_${name}" + idl_set "set_${name}" twoways + idl_default_operation_declaration " ${comment}${oneway}${type} ${name}${(}${)}${raisesnl}${raises}; +" + mysqldefault_src_content "${comment}CREATE DATABASE IF NOT EXISTS ${name}; +use ${name}; + +${definition}" + mysql_default_table_decl "DROP TABLE IF EXISTS ${name}; +CREATE TABLE ${name} ${definition}${comment}; +" + mysql_default_column_decl " ${name} ${type}${notnull}${default}${autoincr}${comment}" + mysql_default_key_decl " ${constraint}${modifier}KEY${name}${type} (${columns})${ref}${comment}" + uml_get_name uml uml_set_name uml +end diff --git a/idl_includes b/idl_includes new file mode 100644 index 0000000..fceab64 --- /dev/null +++ b/idl_includes @@ -0,0 +1 @@ +// "a type" "needed idl_includes" diff --git a/java_imports b/java_imports new file mode 100644 index 0000000..bbd370a --- /dev/null +++ b/java_imports @@ -0,0 +1 @@ +// "a type" "needed java_imports" diff --git a/models.prj b/models.prj new file mode 100644 index 0000000..8760e22 --- /dev/null +++ b/models.prj @@ -0,0 +1,1171 @@ +format 223 +"models" + revision 5 + modified_by 69 "Apacher" + + + + // class settings + default_attribute_visibility private default_relation_visibility private default_operation_visibility public + + classdiagramsettings draw_all_relations yes hide_attributes no hide_operations no hide_getset_operations no hide_ports no show_members_full_definition no show_members_visibility no show_members_stereotype no show_members_context no show_members_multiplicity no show_members_initialization no show_attribute_modifiers no member_max_width 127 show_parameter_dir yes show_parameter_name yes package_name_in_tab no class_drawing_mode natural drawing_language uml show_context_mode no auto_label_position yes show_relation_modifiers no show_relation_visibility no show_infonote no shadow yes gradient none show_stereotype_properties no end + + classcompositediagramsettings auto_label_position yes draw_all_relations yes shadow yes gradient none end + + usecasediagramsettings package_name_in_tab no show_context_mode no auto_label_position yes draw_all_relations yes class_drawing_mode actor shadow yes gradient none show_stereotype_properties no end + + sequencediagramsettings show_full_operations_definition no show_class_of_operation no write_horizontally yes instances_drawing_mode natural drawing_language uml draw_all_relations yes shadow yes gradient none show_stereotype_properties no show_class_context_mode no show_msg_context_mode no end + + collaborationdiagramsettings show_full_operations_definition no show_class_of_operation no show_hierarchical_rank no write_horizontally yes instances_drawing_mode natural drawing_language uml package_name_in_tab no show_class_pack_context_mode no show_msg_context_mode no draw_all_relations yes shadow yes gradient none show_stereotype_properties no end + + objectdiagramsettings write_horizontally yes package_name_in_tab no show_class_pack_context_mode no auto_label_position yes draw_all_relations yes shadow yes gradient none show_stereotype_properties no end + + objectcompositediagramsettings auto_label_position yes draw_all_relations yes shadow yes gradient none end + + componentdiagramsettings package_name_in_tab no show_context_mode no auto_label_position yes draw_all_relations yes shadow yes gradient none + draw_component_as_icon no show_component_req_prov no show_component_rea no show_stereotype_properties no end + + deploymentdiagramsettings package_name_in_tab no show_context_mode no write_horizontally yes auto_label_position yes draw_all_relations yes shadow yes gradient none + draw_component_as_icon no show_component_req_prov no show_component_rea no show_stereotype_properties no end + + statediagramsettings package_name_in_tab no show_context_mode no auto_label_position yes write_label_horizontally yes show_trans_definition no draw_all_relations yes shadow yes gradient none + show_activities yes region_horizontally yes drawing_language uml show_stereotype_properties no end + + activitydiagramsettings package_name_in_tab no show_context_mode no show_opaque_action_definition no auto_label_position yes write_label_horizontally no draw_all_relations yes shadow yes gradient none + show_infonote yes drawing_language uml show_stereotype_properties no end + + class_color yellow duration_color transparent continuation_color gray note_color blue fragment_color transparent subject_color transparent usecase_color yellow package_color transparent component_color green artifact_color green deploymentnode_color gray state_color yellow stateaction_color transparent activity_color transparent activityregion_color transparent activitypartition_color transparent activityaction_color transparent parameterpin_color white generalization_color black + dpi 96 + font_size 8 + diagram_format A4 + + image_root_dir "" + + + mark_for_import + + classview 128069 "domain" + + classdiagramsettings member_max_width 0 end + + classcompositediagramsettings end + + collaborationdiagramsettings end + + objectdiagramsettings end + + objectcompositediagramsettings end + + sequencediagramsettings end + + statediagramsettings + end + + + activitydiagramsettings + end + classdiagram 128069 "domain-model" + classdiagramsettings draw_all_relations no show_members_full_definition yes member_max_width 0 end + size A4 + end + + class 128069 "bankomat" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128069 // (< Znajduje sie) + relation 128069 ---- name "< Znajduje sie" + a role_name "" multiplicity "1" private + classrelation_ref 128069 // (< Znajduje sie) + b role_name "" multiplicity "*" private + classrelation_ref 128197 // (< Znajduje sie) + end + + classrelation 129989 // < Posiada + relation_ref 128965 // < Posiada + end + + classrelation 131909 // (Posiada) + relation 129989 ---- name "Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 131909 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 132037 // (Posiada) + end + + classrelation 132165 // (Posiada) + relation 130117 ---- name "Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 132165 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 132293 // (Posiada) + end + + classrelation 132421 // (Posiada) + relation 130245 ---- name "Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 132421 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 132549 // (Posiada) + end + + classrelation 134469 // (Posiada) + relation 131269 ---- name "Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 134469 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 134597 // (Posiada) + end + + classrelation 134725 // (Posiada) + relation 131397 ---- name "Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 134725 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 134853 // (Posiada) + end + + attribute 130501 "nr_bankomatu" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 128197 "klient" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128581 // (Posiada) + relation 128325 ---- name "Posiada" + a role_name "" multiplicity "1..*" private + classrelation_ref 128581 // (Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 128709 // (Posiada) + end + + attribute 128069 "imie" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 128197 "nazwisko" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 128325 "PESEL" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 128453 "nr_dowodu" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 128325 "karta" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128965 // < Jest przypisa + relation_ref 128453 // < Jest przypisa + end + + classrelation 129221 // + relation_ref 128581 // + end + + attribute 128965 "numer" + private explicit_type "long" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 129093 "cvc" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 128453 "sot" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 130245 // < Jest obslugiwana + relation_ref 129093 // < Jest obslugiwana + end + + classrelation 132805 // Komunikuje sie + relation_ref 130373 // Komunikuje sie + end + + classrelation 132933 // (Komunikuje sie) + relation 130501 ---- name "Komunikuje sie" + a role_name "" multiplicity "*" private + classrelation_ref 132933 // (Komunikuje sie) + b role_name "" multiplicity "*" private + classrelation_ref 133061 // (Komunikuje sie) + end + + classrelation 135237 // (Komunikuje sie) + relation 131653 ---- name "Komunikuje sie" + a role_name "" multiplicity "*" private + classrelation_ref 135237 // (Komunikuje sie) + b role_name "" multiplicity "*" private + classrelation_ref 135365 // (Komunikuje sie) + end + end + + class 128581 "konto" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128709 // (Posiada) + relation_ref 128325 // Posiada + end + + classrelation 128837 // (< Jest przypisa) + relation 128453 ---- name "< Jest przypisa" + a role_name "" multiplicity "*" private + classrelation_ref 128837 // (< Jest przypisa) + b role_name "" multiplicity "1" private + classrelation_ref 128965 // < Jest przypisa + end + + classrelation 135749 // (Obsluguje) + relation 131909 ---- name "Obsluguje" + a role_name "" multiplicity "1" private + classrelation_ref 135749 // (Obsluguje) + b role_name "" multiplicity "*" private + classrelation_ref 135877 // (Obsluguje) + end + + attribute 128581 "numer" + private explicit_type "long" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 128709 "stan" + private explicit_type "wartosc" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 128837 "waluta" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 128709 "bank" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128325 // (< Znajduje sie) + relation 128197 ---- name "< Znajduje sie" + a role_name "" multiplicity "1" private + classrelation_ref 128325 // (< Znajduje sie) + b role_name "" multiplicity "*" private + classrelation_ref 128453 // (< Znajduje sie) + end + + classrelation 130373 // (< Posiada) + relation 129221 ---- name "< Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 130373 // (< Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 130501 // (< Posiada) + end + + classrelation 142405 // (zatrudnia >) + relation 138437 ---- name "zatrudnia >" + a role_name "" multiplicity "*" private + classrelation_ref 142405 // (zatrudnia >) + b role_name "" multiplicity "*" private + classrelation_ref 142533 // (zatrudnia >) + end + + attribute 131141 "nazwa" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 128837 "watchdog" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 129861 // (< Posiada) + relation 128965 ---- name "< Posiada" + a role_name "" multiplicity "1" private + classrelation_ref 129861 // (< Posiada) + b role_name "" multiplicity "1" private + classrelation_ref 129989 // < Posiada + end + + classrelation 143429 // (Informuje o stanie >) + relation 138949 ---- name "Informuje o stanie >" + a role_name "" multiplicity "1" private + classrelation_ref 143429 // (Informuje o stanie >) + b role_name "" multiplicity "*" private + classrelation_ref 143557 // (Informuje o stanie >) + end + end + + class 129221 "system_bankowy" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 130501 // (< Posiada) + relation_ref 129221 // < Posiada + end + + classrelation 133061 // (Komunikuje sie) + relation_ref 130501 // Komunikuje sie + end + + classrelation 134981 // (Posiada >) + relation 131525 ---- name "Posiada >" + a role_name "" multiplicity "1" private + classrelation_ref 134981 // (Posiada >) + b role_name "" multiplicity "1" private + classrelation_ref 135109 // (Posiada >) + end + + classrelation 135877 // (Obsluguje) + relation_ref 131909 // Obsluguje + end + end + + class 129349 "system_telefonii_komorkowej" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 135365 // (Komunikuje sie) + relation_ref 131653 // Komunikuje sie + end + end + + class 129605 "system_modulu_wplacajacego" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 131653 // (Obsluguje) + relation 129861 ---- name "Obsluguje" + a role_name "" multiplicity "1" private + classrelation_ref 131653 // (Obsluguje) + b role_name "" multiplicity "1" private + classrelation_ref 131781 // (Obsluguje) + end + + classrelation 134853 // (Posiada) + relation_ref 131397 // Posiada + end + + classrelation 143685 // (Obsluguje) + relation 139077 ---- name "Obsluguje" + a role_name "" multiplicity "1" private + classrelation_ref 143685 // (Obsluguje) + b role_name "" multiplicity "1" private + classrelation_ref 143813 // (Obsluguje) + end + end + + class 129733 "system_modulu_wyplacajacego" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 134341 // Obsluguje + relation_ref 131141 // Obsluguje + end + + classrelation 134597 // (Posiada) + relation_ref 131269 // Posiada + end + end + + class 129861 "system_uwierzytelniania" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 135109 // (Posiada >) + relation_ref 131525 // Posiada > + end + end + + class 129989 "system_czytnika_kart" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 132037 // (Posiada) + relation_ref 129989 // Posiada + end + end + + class 130117 "system_telekomunikacyjny" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 132293 // (Posiada) + relation_ref 130117 // Posiada + end + + classrelation 132677 // (Komunikuje sie) + relation 130373 ---- name "Komunikuje sie" + a role_name "" multiplicity "1" private + classrelation_ref 132677 // (Komunikuje sie) + b role_name "" multiplicity "*" private + classrelation_ref 132805 // Komunikuje sie + end + + classrelation 143173 // (< Monitoruje) + relation 138821 ---- name "< Monitoruje" + a role_name "" multiplicity "1" private + classrelation_ref 143173 // (< Monitoruje) + b role_name "" multiplicity "*" private + classrelation_ref 143301 // (< Monitoruje) + end + + classrelation 143557 // (Informuje o stanie >) + relation_ref 138949 // Informuje o stanie > + end + end + + class 136645 "kasetka" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 131781 // (Obsluguje) + relation_ref 129861 // Obsluguje + end + + classrelation 134213 // (Obsluguje) + relation 131141 ---- name "Obsluguje" + a role_name "" multiplicity "1" private + classrelation_ref 134213 // (Obsluguje) + b role_name "" multiplicity "1" private + classrelation_ref 134341 // Obsluguje + end + + attribute 130885 "ID" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 131013 "stan" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + classrelation 143813 // (Obsluguje) + relation_ref 139077 // Obsluguje + end + end + + class 136773 "wplata" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 133445 // + relation 130757 ---- + a role_name "" private + classrelation_ref 133445 // + b role_name "" private + classrelation_ref 133573 // + end + end + + class 136901 "wyplata" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 133701 // + relation 130885 ---- + a role_name "" private + classrelation_ref 133701 // + b role_name "" private + classrelation_ref 133829 // + end + end + + class 137029 "przelew" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 133957 // + relation 131013 ---- + a role_name "" private + classrelation_ref 133957 // + b role_name "" private + classrelation_ref 134085 // + end + end + + class 137157 "system_drukowania_potwierdzen" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 132549 // (Posiada) + relation_ref 130245 // Posiada + end + + classrelation 133189 // (Obsluguje) + relation 130629 ---- name "Obsluguje" + a role_name "" multiplicity "*" private + classrelation_ref 133189 // (Obsluguje) + b role_name "" multiplicity "1" private + classrelation_ref 133317 // (Obsluguje) + end + end + + class 137285 "wydruk" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 133317 // (Obsluguje) + relation_ref 130629 // Obsluguje + end + end + + class 137413 "transakcja" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 130117 // (< Jest obslugiwana) + relation 129093 ---- name "< Jest obslugiwana" + a role_name "" multiplicity "1" private + classrelation_ref 130117 // (< Jest obslugiwana) + b role_name "" multiplicity "*" private + classrelation_ref 130245 // < Jest obslugiwana + end + + classrelation 133573 // + relation_ref 130757 // + end + + classrelation 133829 // + relation_ref 130885 // + end + + classrelation 134085 // + relation_ref 131013 // + end + + attribute 129349 "numer" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 129477 "kwota" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 129605 "waluta" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 129733 "data_wykonania" + private explicit_type "data" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 129861 "nr_bankomatu" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 137541 "pin" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 129093 // + relation 128581 ---- + a role_name "" multiplicity "1" private + classrelation_ref 129093 // + b role_name "" multiplicity "1" private + classrelation_ref 129221 // + end + + attribute 129221 "kod_pin" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 137669 "loklizacja_banku" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128453 // (< Znajduje sie) + relation_ref 128197 // < Znajduje sie + end + + attribute 130373 "adres" + private type class_ref 144837 // adres + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + classrelation 144325 // + relation_ref 139333 // + end + end + + class 137797 "lokalizacja_bankomatu" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 128197 // (< Znajduje sie) + relation_ref 128069 // < Znajduje sie + end + + classrelation 143941 // + relation 139205 ---- + a role_name "" private + classrelation_ref 143941 // + b role_name "" private + classrelation_ref 144069 // + end + end + + class 144325 "pracownik" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 142533 // (zatrudnia >) + relation_ref 138437 // zatrudnia > + end + + classrelation 142661 // + relation 138565 ---- + a role_name "" private + classrelation_ref 142661 // + b role_name "" private + classrelation_ref 142789 // + end + + classrelation 142917 // + relation 138693 ---- + a role_name "" private + classrelation_ref 142917 // + b role_name "" private + classrelation_ref 143045 // + end + + attribute 129989 "imie" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 130117 "nazwisko" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 130245 "ID" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + end + + class 144453 "serwisant" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 142789 // + relation_ref 138565 // + end + end + + class 144581 "konwojent" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 143045 // + relation_ref 138693 // + end + end + + class 144709 "system_nadzoru" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + classrelation 143301 // (< Monitoruje) + relation_ref 138821 // < Monitoruje + end + end + + class 144837 "adres" + visibility package + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + attribute 131269 "nr_domu" + private explicit_type "int" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 131397 "nazwa_ulicy" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 131525 "nazwa_miasta" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + attribute 131653 "kod_pocztowy" + private explicit_type "string" + cpp_decl "" + java_decl "" + php_decl "" + python_decl "" + idl_decl "" + mysql_decl "" + MysqlColumn + end + + classrelation 144069 // + relation_ref 139205 // + end + + classrelation 144197 // + relation 139333 ---- + a role_name "" private + classrelation_ref 144197 // + b role_name "" private + classrelation_ref 144325 // + end + end + + class 151365 "Klient" + visibility package stereotype "actor" + cpp_decl "" + java_decl "" + php_decl "" + python_2_2 python_decl "" + idl_decl "" + explicit_switch_type "" + mysql_decl "" + + end + end + + classview 134597 "design" + + classdiagramsettings member_max_width 0 end + + classcompositediagramsettings end + + collaborationdiagramsettings end + + objectdiagramsettings end + + objectcompositediagramsettings end + + sequencediagramsettings end + + statediagramsettings + end + + + activitydiagramsettings + end + sequencediagram 134597 "5-1-WprowadzenieKarty" + sequencediagramsettings end + overlapping_bars size A4 + end + + classinstance 128069 "" + type class_ref 151365 // Klient + attributes + end + relations + end + end + + classinstance 128197 "" + type class_ref 128069 // bankomat + attributes + end + relations + end + end + + classinstance 128325 "" + type class_ref 129989 // system_czytnika_kart + attributes + end + relations + end + end + + classinstance 128837 "" + type class_ref 128325 // karta + attributes + end + relations + end + end + + sequencediagram 134725 "5-2-WprowadzeniePINu" + sequencediagramsettings end + overlapping_bars size A4 + end + + classinstance 129093 "" + type class_ref 151365 // Klient + attributes + end + relations + end + end + + classinstance 129221 "" + type class_ref 128069 // bankomat + attributes + end + relations + end + end + + classinstance 129349 "" + type class_ref 128325 // karta + attributes + end + relations + end + end + end +end diff --git a/python_imports b/python_imports new file mode 100644 index 0000000..4a1bd3a --- /dev/null +++ b/python_imports @@ -0,0 +1 @@ +// "a type" "needed python_imports"