From f700c07902b5340147b2b7b4c85621b837b52938 Mon Sep 17 00:00:00 2001 From: xxrjun Date: Wed, 10 Apr 2024 23:26:50 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=95docs:=20add=20JavaDoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflow/publish-javadoc.yml | 23 + .idea/intellij-javadocs-4.0.1.xml | 6 +- .idea/misc.xml | 3 + docs/allclasses-index.html | 166 ++++ docs/allpackages-index.html | 76 ++ docs/com/xxrjun/UMLEditorApplication.html | 188 ++++ docs/com/xxrjun/components/Canvas.html | 521 +++++++++++ docs/com/xxrjun/components/MenuBar.html | 230 +++++ docs/com/xxrjun/components/ToolPanel.html | 327 +++++++ .../xxrjun/components/package-summary.html | 109 +++ docs/com/xxrjun/components/package-tree.html | 89 ++ docs/com/xxrjun/components/uml/UMLGroup.html | 337 +++++++ docs/com/xxrjun/components/uml/UMLObject.html | 540 +++++++++++ docs/com/xxrjun/components/uml/UMLPort.html | 236 +++++ .../uml/basics/ClassBasicObject.html | 201 ++++ .../components/uml/basics/UMLBasicObject.html | 374 ++++++++ .../uml/basics/UseCaseBasicObject.html | 201 ++++ .../uml/basics/package-summary.html | 105 +++ .../components/uml/basics/package-tree.html | 80 ++ .../uml/connectionlines/AssociationLine.html | 216 +++++ .../uml/connectionlines/CompositionLine.html | 216 +++++ .../connectionlines/GeneralizationLine.html | 216 +++++ .../UMLConnectionLine.EndPointType.html | 239 +++++ .../connectionlines/UMLConnectionLine.html | 355 +++++++ .../uml/connectionlines/package-summary.html | 119 +++ .../uml/connectionlines/package-tree.html | 95 ++ .../components/uml/package-summary.html | 107 +++ .../xxrjun/components/uml/package-tree.html | 88 ++ docs/com/xxrjun/enums/EditFunctionTypes.html | 235 +++++ docs/com/xxrjun/enums/ToolButtonConfig.html | 316 +++++++ docs/com/xxrjun/enums/UMLObjectTypes.html | 268 ++++++ docs/com/xxrjun/enums/package-summary.html | 107 +++ docs/com/xxrjun/enums/package-tree.html | 77 ++ .../xxrjun/modes/CreateBasicUMLObject.html | 192 ++++ .../xxrjun/modes/CreateUMLConnectionLine.html | 222 +++++ docs/com/xxrjun/modes/Select.html | 215 +++++ docs/com/xxrjun/modes/UMLFactory.html | 168 ++++ .../com/xxrjun/modes/UMLFactoryInterface.html | 132 +++ docs/com/xxrjun/modes/UMLMode.html | 173 ++++ docs/com/xxrjun/modes/package-summary.html | 125 +++ docs/com/xxrjun/modes/package-tree.html | 88 ++ docs/com/xxrjun/package-summary.html | 99 ++ docs/com/xxrjun/package-tree.html | 71 ++ docs/constant-values.html | 88 ++ docs/element-list | 7 + docs/help-doc.html | 186 ++++ docs/index-files/index-1.html | 93 ++ docs/index-files/index-10.html | 83 ++ docs/index-files/index-11.html | 65 ++ docs/index-files/index-12.html | 63 ++ docs/index-files/index-13.html | 89 ++ docs/index-files/index-14.html | 155 ++++ docs/index-files/index-15.html | 85 ++ docs/index-files/index-16.html | 177 ++++ docs/index-files/index-17.html | 97 ++ docs/index-files/index-2.html | 181 ++++ docs/index-files/index-3.html | 85 ++ docs/index-files/index-4.html | 65 ++ docs/index-files/index-5.html | 65 ++ docs/index-files/index-6.html | 189 ++++ docs/index-files/index-7.html | 71 ++ docs/index-files/index-8.html | 83 ++ docs/index-files/index-9.html | 65 ++ docs/index.html | 75 ++ docs/jquery-ui.overrides.css | 35 + docs/legal/COPYRIGHT | 69 ++ docs/legal/LICENSE | 118 +++ docs/legal/jquery.md | 72 ++ docs/legal/jqueryUI.md | 49 + docs/member-search-index.js | 1 + docs/module-search-index.js | 1 + docs/overview-summary.html | 26 + docs/overview-tree.html | 162 ++++ docs/package-search-index.js | 1 + docs/resources/glass.png | Bin 0 -> 499 bytes docs/resources/x.png | Bin 0 -> 394 bytes docs/script-dir/jquery-3.6.1.min.js | 2 + docs/script-dir/jquery-ui.min.css | 6 + docs/script-dir/jquery-ui.min.js | 6 + docs/script.js | 132 +++ docs/search.js | 354 +++++++ docs/serialized-form.html | 122 +++ docs/stylesheet.css | 866 ++++++++++++++++++ docs/tag-search-index.js | 1 + docs/type-search-index.js | 1 + 85 files changed, 12039 insertions(+), 3 deletions(-) create mode 100644 .github/workflow/publish-javadoc.yml create mode 100644 docs/allclasses-index.html create mode 100644 docs/allpackages-index.html create mode 100644 docs/com/xxrjun/UMLEditorApplication.html create mode 100644 docs/com/xxrjun/components/Canvas.html create mode 100644 docs/com/xxrjun/components/MenuBar.html create mode 100644 docs/com/xxrjun/components/ToolPanel.html create mode 100644 docs/com/xxrjun/components/package-summary.html create mode 100644 docs/com/xxrjun/components/package-tree.html create mode 100644 docs/com/xxrjun/components/uml/UMLGroup.html create mode 100644 docs/com/xxrjun/components/uml/UMLObject.html create mode 100644 docs/com/xxrjun/components/uml/UMLPort.html create mode 100644 docs/com/xxrjun/components/uml/basics/ClassBasicObject.html create mode 100644 docs/com/xxrjun/components/uml/basics/UMLBasicObject.html create mode 100644 docs/com/xxrjun/components/uml/basics/UseCaseBasicObject.html create mode 100644 docs/com/xxrjun/components/uml/basics/package-summary.html create mode 100644 docs/com/xxrjun/components/uml/basics/package-tree.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/AssociationLine.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/CompositionLine.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/GeneralizationLine.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/UMLConnectionLine.EndPointType.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/UMLConnectionLine.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/package-summary.html create mode 100644 docs/com/xxrjun/components/uml/connectionlines/package-tree.html create mode 100644 docs/com/xxrjun/components/uml/package-summary.html create mode 100644 docs/com/xxrjun/components/uml/package-tree.html create mode 100644 docs/com/xxrjun/enums/EditFunctionTypes.html create mode 100644 docs/com/xxrjun/enums/ToolButtonConfig.html create mode 100644 docs/com/xxrjun/enums/UMLObjectTypes.html create mode 100644 docs/com/xxrjun/enums/package-summary.html create mode 100644 docs/com/xxrjun/enums/package-tree.html create mode 100644 docs/com/xxrjun/modes/CreateBasicUMLObject.html create mode 100644 docs/com/xxrjun/modes/CreateUMLConnectionLine.html create mode 100644 docs/com/xxrjun/modes/Select.html create mode 100644 docs/com/xxrjun/modes/UMLFactory.html create mode 100644 docs/com/xxrjun/modes/UMLFactoryInterface.html create mode 100644 docs/com/xxrjun/modes/UMLMode.html create mode 100644 docs/com/xxrjun/modes/package-summary.html create mode 100644 docs/com/xxrjun/modes/package-tree.html create mode 100644 docs/com/xxrjun/package-summary.html create mode 100644 docs/com/xxrjun/package-tree.html create mode 100644 docs/constant-values.html create mode 100644 docs/element-list create mode 100644 docs/help-doc.html create mode 100644 docs/index-files/index-1.html create mode 100644 docs/index-files/index-10.html create mode 100644 docs/index-files/index-11.html create mode 100644 docs/index-files/index-12.html create mode 100644 docs/index-files/index-13.html create mode 100644 docs/index-files/index-14.html create mode 100644 docs/index-files/index-15.html create mode 100644 docs/index-files/index-16.html create mode 100644 docs/index-files/index-17.html create mode 100644 docs/index-files/index-2.html create mode 100644 docs/index-files/index-3.html create mode 100644 docs/index-files/index-4.html create mode 100644 docs/index-files/index-5.html create mode 100644 docs/index-files/index-6.html create mode 100644 docs/index-files/index-7.html create mode 100644 docs/index-files/index-8.html create mode 100644 docs/index-files/index-9.html create mode 100644 docs/index.html create mode 100644 docs/jquery-ui.overrides.css create mode 100644 docs/legal/COPYRIGHT create mode 100644 docs/legal/LICENSE create mode 100644 docs/legal/jquery.md create mode 100644 docs/legal/jqueryUI.md create mode 100644 docs/member-search-index.js create mode 100644 docs/module-search-index.js create mode 100644 docs/overview-summary.html create mode 100644 docs/overview-tree.html create mode 100644 docs/package-search-index.js create mode 100644 docs/resources/glass.png create mode 100644 docs/resources/x.png create mode 100644 docs/script-dir/jquery-3.6.1.min.js create mode 100644 docs/script-dir/jquery-ui.min.css create mode 100644 docs/script-dir/jquery-ui.min.js create mode 100644 docs/script.js create mode 100644 docs/search.js create mode 100644 docs/serialized-form.html create mode 100644 docs/stylesheet.css create mode 100644 docs/tag-search-index.js create mode 100644 docs/type-search-index.js diff --git a/.github/workflow/publish-javadoc.yml b/.github/workflow/publish-javadoc.yml new file mode 100644 index 0000000..26142c0 --- /dev/null +++ b/.github/workflow/publish-javadoc.yml @@ -0,0 +1,23 @@ +name: Deploy Javadoc + +on: + push: + branches: + - master + - main + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: write # if you have a protection rule on your repository, you'll need to give write permission to the workflow. + steps: + - name: Deploy JavaDoc 🚀 + uses: MathieuSoysal/Javadoc-publisher.yml@v2.5.0 + with: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN_FOR_JAVADOC }} + javadoc-branch: javadoc + java-version: 17 + target-folder: docs # url will be https://.github.io//javadoc, This can be left as nothing to generate javadocs in the root folder. + project: maven # or gradle + # subdirectories: moduleA moduleB #for subdirectories support, needs to be run with custom command \ No newline at end of file diff --git a/.idea/intellij-javadocs-4.0.1.xml b/.idea/intellij-javadocs-4.0.1.xml index fbb9478..1da684e 100644 --- a/.idea/intellij-javadocs-4.0.1.xml +++ b/.idea/intellij-javadocs-4.0.1.xml @@ -3,17 +3,17 @@ UPDATE - false + true true - FIELD TYPE METHOD + FIELD - DEFAULT PUBLIC PROTECTED + DEFAULT diff --git a/.idea/misc.xml b/.idea/misc.xml index 82dbec8..e147e69 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,9 @@ + +