From a91a242710fe74ac2d17d18d4cf4cd06ca7c709d Mon Sep 17 00:00:00 2001 From: Valentin Boulanger Date: Wed, 9 Dec 2020 12:48:52 +0100 Subject: [PATCH] =?UTF-8?q?R=C3=A9solution=20tickets=20#4=20#22=20Enregist?= =?UTF-8?q?rement=20projet=20et=20modificateurs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 + .idea/libraries/AppThinker.xml | 9 + .idea/misc.xml | 9 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + AppThinker/Documentation/AppThinker.html | 38 +- AppThinker/Documentation/AppThinkerGrid.html | 406 ------------ .../Documentation/AppThinkerMenuBar.html | 42 +- .../Documentation/AppThinkerStatusbar.html | 4 +- .../Documentation/AppThinkerToolbar.html | 62 +- .../Documentation/AppThinkerWindow.html | 45 +- AppThinker/Documentation/Argument.html | 21 +- .../ArgumentsPropertiesWindow.html | 487 +++++++++++++++ AppThinker/Documentation/Attribute.html | 265 +++++++- AppThinker/Documentation/Class.html | 115 +++- .../Documentation/ClassPropertiesWindow.html | 581 ++++++++++++++++++ AppThinker/Documentation/Link.html | 17 +- AppThinker/Documentation/Method.html | 269 +++++++- AppThinker/Documentation/Project.html | 45 +- AppThinker/Documentation/Selectpoint.html | 499 --------------- AppThinker/Documentation/UmlDiagram.html | 87 ++- .../Documentation/allclasses-frame.html | 8 +- .../Documentation/allclasses-noframe.html | 8 +- .../Documentation/class-use/AppThinker.html | 4 +- .../class-use/AppThinkerMenuBar.html | 4 +- .../class-use/AppThinkerStatusbar.html | 4 +- .../class-use/AppThinkerToolbar.html | 8 +- .../class-use/AppThinkerWindow.html | 4 +- .../Documentation/class-use/Argument.html | 4 +- ...nt.html => ArgumentsPropertiesWindow.html} | 24 +- .../Documentation/class-use/Attribute.html | 4 +- AppThinker/Documentation/class-use/Class.html | 30 +- ...erGrid.html => ClassPropertiesWindow.html} | 51 +- AppThinker/Documentation/class-use/Link.html | 4 +- .../Documentation/class-use/Method.html | 23 +- .../Documentation/class-use/Project.html | 24 +- .../Documentation/class-use/UmlDiagram.html | 32 +- AppThinker/Documentation/constant-values.html | 72 +-- AppThinker/Documentation/deprecated-list.html | 4 +- AppThinker/Documentation/help-doc.html | 4 +- .../Documentation/index-files/index-1.html | 36 +- .../Documentation/index-files/index-10.html | 22 +- .../Documentation/index-files/index-11.html | 44 +- .../Documentation/index-files/index-12.html | 98 ++- .../Documentation/index-files/index-13.html | 234 ++++++- .../Documentation/index-files/index-14.html | 180 +----- .../Documentation/index-files/index-15.html | 20 +- .../Documentation/index-files/index-16.html | 38 +- .../Documentation/index-files/index-17.html | 127 ---- .../Documentation/index-files/index-18.html | 139 ----- .../Documentation/index-files/index-2.html | 80 ++- .../Documentation/index-files/index-3.html | 68 +- .../Documentation/index-files/index-4.html | 28 +- .../Documentation/index-files/index-5.html | 208 ++++++- .../Documentation/index-files/index-6.html | 216 +------ .../Documentation/index-files/index-7.html | 40 +- .../Documentation/index-files/index-8.html | 56 +- .../Documentation/index-files/index-9.html | 52 +- AppThinker/Documentation/index.html | 2 +- AppThinker/Documentation/overview-tree.html | 22 +- AppThinker/Documentation/package-frame.html | 8 +- AppThinker/Documentation/package-summary.html | 40 +- AppThinker/Documentation/package-tree.html | 22 +- AppThinker/Documentation/package-use.html | 8 +- AppThinker/Documentation/serialized-form.html | 448 ++++++++++++-- AppThinker/src/AppThinker.java | 127 +++- AppThinker/src/AppThinkerMenuBar.java | 1 + AppThinker/src/AppThinkerStatusbar.java | 2 +- AppThinker/src/AppThinkerToolbar.java | 1 + AppThinker/src/Argument.java | 3 +- AppThinker/src/Attribute.java | 106 +++- AppThinker/src/Class.java | 3 +- AppThinker/src/ClassPropertiesWindow.java | 63 +- AppThinker/src/Link.java | 4 +- AppThinker/src/Method.java | 105 +++- AppThinker/src/Project.java | 3 +- AppThinker/src/UmlDiagram.java | 8 +- appthinker.iml | 11 + 78 files changed, 3754 insertions(+), 2258 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/libraries/AppThinker.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml delete mode 100644 AppThinker/Documentation/AppThinkerGrid.html create mode 100644 AppThinker/Documentation/ArgumentsPropertiesWindow.html create mode 100644 AppThinker/Documentation/ClassPropertiesWindow.html delete mode 100644 AppThinker/Documentation/Selectpoint.html rename AppThinker/Documentation/class-use/{Selectpoint.html => ArgumentsPropertiesWindow.html} (75%) rename AppThinker/Documentation/class-use/{AppThinkerGrid.html => ClassPropertiesWindow.html} (55%) delete mode 100644 AppThinker/Documentation/index-files/index-17.html delete mode 100644 AppThinker/Documentation/index-files/index-18.html create mode 100644 appthinker.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..291b150 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/../../../../:\Documents\appthinker\.idea/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/libraries/AppThinker.xml b/.idea/libraries/AppThinker.xml new file mode 100644 index 0000000..45c91e2 --- /dev/null +++ b/.idea/libraries/AppThinker.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..00c8cd4 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8ed23ec --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AppThinker/Documentation/AppThinker.html b/AppThinker/Documentation/AppThinker.html index 886f596..4e2d772 100644 --- a/AppThinker/Documentation/AppThinker.html +++ b/AppThinker/Documentation/AppThinker.html @@ -2,9 +2,9 @@ - + AppThinker - + @@ -18,7 +18,7 @@ catch(err) { } //--> -var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9}; +var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";