From 3826960788bc0d3e5ad89faf90260f2b380e0739 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 3 Sep 2021 11:16:27 +0100 Subject: [PATCH] Fix crash in LibraryInitializer because readdir() was not in scope. Fix problem in class LibraryInitializer where function readdir() was defined as a static method. Needs to be either defined as a local function, or called with a fully qualified name, ie logger.internal.LibraryInitializer.readdir(). I chose local function. Tested with helloWorld.m and test_log.m. Now appears to be working correctly. --- Mcode/+logger/+internal/LibraryInitializer.m | 11 +++++------ SLF4M.prj | 2 ++ resources/project/Project.xml | 2 ++ resources/project/ProjectData.type.Info.xml | 2 ++ .../FileClassCategory.type.Category.xml | 2 ++ .../artifact.type.Label.xml | 2 ++ .../convenience.type.Label.xml | 2 ++ .../derived.type.Label.xml | 2 ++ .../design.type.Label.xml | 2 ++ .../none.type.Label.xml | 2 ++ .../other.type.Label.xml | 2 ++ .../test.type.Label.xml | 2 ++ .../Root.type.Files/.editorconfig.type.File.xml | 2 ++ .../project/Root.type.Files/.gitignore.type.File.xml | 2 ++ .../project/Root.type.Files/CHANGES.txt.type.File.xml | 2 ++ .../project/Root.type.Files/LICENSE.type.File.xml | 2 ++ .../project/Root.type.Files/Makefile.type.File.xml | 2 ++ resources/project/Root.type.Files/Mcode.type.File.xml | 2 ++ .../Mcode.type.File/+logger.type.File.xml | 2 ++ .../+logger.type.File/+internal.type.File.xml | 2 ++ .../+internal.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../LibraryInitializer.m.type.File.xml | 6 ++++++ .../+internal.type.File/readtext.m.type.File.xml | 6 ++++++ .../+logger.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../Log4jConfigurator.m.type.File.xml | 6 ++++++ .../+logger.type.File/Logger.m.type.File.xml | 6 ++++++ .../+logger.type.File/debug.m.type.File.xml | 6 ++++++ .../+logger.type.File/debugj.m.type.File.xml | 6 ++++++ .../+logger.type.File/error.m.type.File.xml | 6 ++++++ .../+logger.type.File/errorj.m.type.File.xml | 6 ++++++ .../+logger.type.File/globals.m.type.File.xml | 6 ++++++ .../+logger.type.File/info.m.type.File.xml | 6 ++++++ .../+logger.type.File/infoj.m.type.File.xml | 6 ++++++ .../+logger.type.File/private.type.File.xml | 2 ++ .../private.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../private.type.File/loggerCallImpl.m.type.File.xml | 6 ++++++ .../private.type.File/mustBeA.m.type.File.xml | 6 ++++++ .../private.type.File/size2str.m.type.File.xml | 6 ++++++ .../+logger.type.File/trace.m.type.File.xml | 6 ++++++ .../+logger.type.File/tracej.m.type.File.xml | 6 ++++++ .../+logger.type.File/version.m.type.File.xml | 6 ++++++ .../+logger.type.File/warn.m.type.File.xml | 6 ++++++ .../+logger.type.File/warnj.m.type.File.xml | 6 ++++++ .../Mcode.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../project/Root.type.Files/README.md.type.File.xml | 2 ++ .../project/Root.type.Files/VERSION.type.File.xml | 2 ++ .../project/Root.type.Files/compatter.type.File.xml | 2 ++ .../compatter.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../compatter.type.File/input-templates.type.File.xml | 2 ++ .../input-templates.type.File/.gitkeep.type.File.xml | 2 ++ .../1.type.DIR_SIGNIFIER.xml | 2 ++ .../project/Root.type.Files/dev-tools.type.File.xml | 2 ++ .../dev-tools.type.File/+database.type.File.xml | 2 ++ .../+database.type.File/+jdbc.type.File.xml | 2 ++ .../+jdbc.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+jdbc.type.File/@connection.type.File.xml | 2 ++ .../@connection.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../@connection.type.File/dispstr.m.type.File.xml | 6 ++++++ .../+database.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../dev-tools.type.File/+pkg.type.File.xml | 2 ++ .../+pkg.type.File/+a.type.File.xml | 2 ++ .../+pkg.type.File/+a.type.File/+deeply.type.File.xml | 2 ++ .../+deeply.type.File/+nested.type.File.xml | 2 ++ .../+nested.type.File/+package.type.File.xml | 2 ++ .../+package.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+package.type.File/a_class.m.type.File.xml | 6 ++++++ .../+nested.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+deeply.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+a.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+pkg.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+pkg.type.File/class_in_pkg.m.type.File.xml | 6 ++++++ .../+pkg.type.File/func_in_pkg.m.type.File.xml | 6 ++++++ .../dev-tools.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../calling_Logger_directly.m.type.File.xml | 6 ++++++ .../gen_dummy_log_entries.m.type.File.xml | 6 ++++++ .../dev-tools.type.File/helloWorld.m.type.File.xml | 6 ++++++ .../dev-tools.type.File/mydate.m.type.File.xml | 6 ++++++ .../dev-tools.type.File/test_log.m.type.File.xml | 6 ++++++ .../top_level_class.m.type.File.xml | 6 ++++++ .../top_level_function.m.type.File.xml | 6 ++++++ .../project/Root.type.Files/doc-project.type.File.xml | 2 ++ .../doc-project.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../Description for File Exchange.txt.type.File.xml | 2 ++ .../Release Checklist.md.type.File.xml | 2 ++ resources/project/Root.type.Files/docs.type.File.xml | 2 ++ .../docs.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../docs.type.File/CNAME.type.File.xml | 2 ++ .../docs.type.File/Gemfile.type.File.xml | 2 ++ .../docs.type.File/LICENSE-apache.txt.type.File.xml | 2 ++ .../docs.type.File/LICENSE-bsd.txt.type.File.xml | 2 ++ .../docs.type.File/UserGuide.md.type.File.xml | 2 ++ .../docs.type.File/_config.yml.type.File.xml | 2 ++ .../docs.type.File/images.type.File.xml | 2 ++ .../images.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ ...M-configurator-screenshot-scaled.png.type.File.xml | 2 ++ .../docs.type.File/index.md.type.File.xml | 2 ++ resources/project/Root.type.Files/lib.type.File.xml | 2 ++ .../lib.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../Root.type.Files/lib.type.File/java.type.File.xml | 2 ++ .../java.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../java.type.File/log4j1-config-gui.type.File.xml | 2 ++ .../1.type.DIR_SIGNIFIER.xml | 2 ++ .../README.md.type.File.xml | 2 ++ .../log4j1-config-gui-0.1.1.jar.type.File.xml | 2 ++ .../lib.type.File/matlab.type.File.xml | 2 ++ .../matlab.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../matlab.type.File/dispstr.type.File.xml | 2 ++ .../dispstr.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../dispstr.type.File/dispstr-1.1.1.type.File.xml | 2 ++ .../dispstr-1.1.1.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../dispstr-1.1.1.type.File/LICENSE.type.File.xml | 2 ++ .../Mcode-examples.type.File.xml | 2 ++ .../Mcode-examples.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../Mcode-examples.type.File/Birthday.m.type.File.xml | 6 ++++++ .../Mcode-examples.type.File/UserID.m.type.File.xml | 6 ++++++ .../dispstr-1.1.1.type.File/Mcode.type.File.xml | 2 ++ .../Mcode.type.File/+dispstrlib.type.File.xml | 2 ++ .../+dispstrlib.type.File/+internal.type.File.xml | 2 ++ .../+internal.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../convertArgsForPrintf.m.type.File.xml | 6 ++++++ .../+internal.type.File/dispc.m.type.File.xml | 6 ++++++ .../isErrorIdentifier.m.type.File.xml | 6 ++++++ .../+internal.type.File/mycombvec.m.type.File.xml | 6 ++++++ .../+internal.type.File/num2cellstr.m.type.File.xml | 6 ++++++ .../prettyprint_array.m.type.File.xml | 6 ++++++ .../prettyprint_cell.m.type.File.xml | 6 ++++++ .../prettyprint_struct.m.type.File.xml | 6 ++++++ .../prettyprint_tabular.m.type.File.xml | 6 ++++++ .../+internal.type.File/size2str.m.type.File.xml | 6 ++++++ .../+internal.type.File/sprintfv.m.type.File.xml | 6 ++++++ .../+dispstrlib.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../+dispstrlib.type.File/Displayable.m.type.File.xml | 6 ++++++ .../DisplayableHandle.m.type.File.xml | 6 ++++++ .../DispstrHelper.m.type.File.xml | 6 ++++++ .../Mcode.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../Mcode.type.File/dispstr.m.type.File.xml | 6 ++++++ .../Mcode.type.File/dispstrs.m.type.File.xml | 6 ++++++ .../Mcode.type.File/errords.m.type.File.xml | 6 ++++++ .../Mcode.type.File/fprintfds.m.type.File.xml | 6 ++++++ .../Mcode.type.File/pp.m.type.File.xml | 6 ++++++ .../Mcode.type.File/prettyprint.m.type.File.xml | 6 ++++++ .../Mcode.type.File/private.type.File.xml | 2 ++ .../private.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../private.type.File/cellrec.m.type.File.xml | 6 ++++++ .../private.type.File/cellrec2struct.m.type.File.xml | 6 ++++++ .../private.type.File/copyfields.m.type.File.xml | 6 ++++++ .../private.type.File/parseOpts.m.type.File.xml | 6 ++++++ .../Mcode.type.File/sprintfds.m.type.File.xml | 6 ++++++ .../Mcode.type.File/warningds.m.type.File.xml | 6 ++++++ .../dispstr-1.1.1.type.File/README.md.type.File.xml | 2 ++ .../dispstr-1.1.1.type.File/VERSION.type.File.xml | 2 ++ .../dispstr-1.1.1.type.File/doc.type.File.xml | 2 ++ .../doc.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../doc.type.File/Changelog.md.type.File.xml | 2 ++ .../doc.type.File/Developer-Notes.md.type.File.xml | 2 ++ .../doc.type.File/Index.md.type.File.xml | 2 ++ .../Text for File Exchange.txt.type.File.xml | 2 ++ .../doc.type.File/User-Guide.md.type.File.xml | 2 ++ .../Root.type.Files/lib.type.File/shims.type.File.xml | 2 ++ .../shims.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../lib.type.File/shims.type.File/eq.type.File.xml | 2 ++ .../eq.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../shims.type.File/eq.type.File/R2020a.type.File.xml | 2 ++ .../R2020a.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../eq.type.File/R2020a.type.File/java.type.File.xml | 2 ++ .../java.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../java.type.File/slf4j-1.5.8.type.File.xml | 2 ++ .../slf4j-1.5.8.type.File/1.type.DIR_SIGNIFIER.xml | 2 ++ .../slf4j-api-1.5.8.jar.type.File.xml | 2 ++ .../slf4j-log4j12-1.5.8.jar.type.File.xml | 2 ++ ...270-0ed5-406d-81d8-e4638427d2eb.type.Reference.xml | 2 ++ ...ce7-14a8-48d0-9bc9-ec17a9081927.type.Reference.xml | 2 ++ ...901-cba8-470a-8afc-a1cc7f2fa4e6.type.Reference.xml | 2 ++ ...1aa-4303-43f5-a145-7b4281fb4902.type.Reference.xml | 2 ++ ...0df-27cd-427d-aba3-c990a1224559.type.Reference.xml | 2 ++ ...358-ddad-4fcf-842c-967ba02b66e1.type.Reference.xml | 2 ++ ...5ef-82b2-4bfa-b6e1-80e7ac0791cc.type.Reference.xml | 2 ++ ...dcb-6514-498b-85f1-407dbc2ef663.type.Reference.xml | 2 ++ ...3e2-f779-4e9b-ad35-a6dd9dc8e4cc.type.Reference.xml | 2 ++ ...5cd-5320-47ee-8eb0-ca31c1274834.type.Reference.xml | 2 ++ ...eb9-a401-4f91-b8cf-ef13a41660ce.type.Reference.xml | 2 ++ ...9d2-4e59-47c3-8043-f54d18562a52.type.Reference.xml | 2 ++ ...e22-711a-41c7-af11-98fb8db53584.type.Reference.xml | 2 ++ ...14f-f4e8-4d65-9d0f-2a09d1d216ba.type.Reference.xml | 2 ++ ...7b3-9bff-4360-8c92-52381316a722.type.Reference.xml | 2 ++ ...fb4-02fc-4a07-a2ca-236dd885c04f.type.Reference.xml | 2 ++ ...c95-260c-43e0-a306-54335f1fc45a.type.Reference.xml | 2 ++ ...536-c676-44d5-ad24-ba140386f578.type.Reference.xml | 2 ++ ...abc-1f5d-4c7d-b3d1-8e1cd2f23be6.type.Reference.xml | 2 ++ ...34f-7b12-4954-a2a2-9eeac36ba1de.type.Reference.xml | 2 ++ ...63a-4091-46d5-aef1-d0b35a5fb63c.type.Reference.xml | 2 ++ .../uuid-237589a5-bfea-481f-b867-17fb19069feb.xml | 2 ++ 192 files changed, 619 insertions(+), 6 deletions(-) create mode 100644 SLF4M.prj create mode 100644 resources/project/Project.xml create mode 100644 resources/project/ProjectData.type.Info.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml create mode 100644 resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml create mode 100644 resources/project/Root.type.Files/.editorconfig.type.File.xml create mode 100644 resources/project/Root.type.Files/.gitignore.type.File.xml create mode 100644 resources/project/Root.type.Files/CHANGES.txt.type.File.xml create mode 100644 resources/project/Root.type.Files/LICENSE.type.File.xml create mode 100644 resources/project/Root.type.Files/Makefile.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/LibraryInitializer.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/readtext.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Log4jConfigurator.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Logger.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debug.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debugj.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/error.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/errorj.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/globals.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/info.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/infoj.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/loggerCallImpl.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/mustBeA.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/size2str.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/trace.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/tracej.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/version.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warn.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warnj.m.type.File.xml create mode 100644 resources/project/Root.type.Files/Mcode.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/README.md.type.File.xml create mode 100644 resources/project/Root.type.Files/VERSION.type.File.xml create mode 100644 resources/project/Root.type.Files/compatter.type.File.xml create mode 100644 resources/project/Root.type.Files/compatter.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/compatter.type.File/input-templates.type.File.xml create mode 100644 resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/.gitkeep.type.File.xml create mode 100644 resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/dispstr.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/a_class.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/class_in_pkg.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/func_in_pkg.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/calling_Logger_directly.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/gen_dummy_log_entries.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/helloWorld.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/mydate.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/test_log.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/top_level_class.m.type.File.xml create mode 100644 resources/project/Root.type.Files/dev-tools.type.File/top_level_function.m.type.File.xml create mode 100644 resources/project/Root.type.Files/doc-project.type.File.xml create mode 100644 resources/project/Root.type.Files/doc-project.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/doc-project.type.File/Description for File Exchange.txt.type.File.xml create mode 100644 resources/project/Root.type.Files/doc-project.type.File/Release Checklist.md.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/CNAME.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/Gemfile.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/LICENSE-apache.txt.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/LICENSE-bsd.txt.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/UserGuide.md.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/_config.yml.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/images.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/images.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/images.type.File/SLF4M-configurator-screenshot-scaled.png.type.File.xml create mode 100644 resources/project/Root.type.Files/docs.type.File/index.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/README.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/log4j1-config-gui-0.1.1.jar.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/LICENSE.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/Birthday.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/UserID.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/convertArgsForPrintf.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/dispc.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/isErrorIdentifier.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/mycombvec.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/num2cellstr.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_array.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_cell.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_struct.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_tabular.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/size2str.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/sprintfv.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/Displayable.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DisplayableHandle.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DispstrHelper.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstr.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstrs.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/errords.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/fprintfds.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/pp.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/prettyprint.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec2struct.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/copyfields.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/parseOpts.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/sprintfds.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/warningds.m.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/README.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/VERSION.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Changelog.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Developer-Notes.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Index.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Text for File Exchange.txt.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/User-Guide.md.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/1.type.DIR_SIGNIFIER.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-api-1.5.8.jar.type.File.xml create mode 100644 resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-log4j12-1.5.8.jar.type.File.xml create mode 100644 resources/project/Root.type.ProjectPath/0aa08270-0ed5-406d-81d8-e4638427d2eb.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/1624ace7-14a8-48d0-9bc9-ec17a9081927.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/1add4901-cba8-470a-8afc-a1cc7f2fa4e6.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/2428d1aa-4303-43f5-a145-7b4281fb4902.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/2da380df-27cd-427d-aba3-c990a1224559.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/31e01358-ddad-4fcf-842c-967ba02b66e1.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/3334e5ef-82b2-4bfa-b6e1-80e7ac0791cc.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/43c0ddcb-6514-498b-85f1-407dbc2ef663.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/4aab83e2-f779-4e9b-ad35-a6dd9dc8e4cc.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/52dec5cd-5320-47ee-8eb0-ca31c1274834.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/6777aeb9-a401-4f91-b8cf-ef13a41660ce.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/6b2289d2-4e59-47c3-8043-f54d18562a52.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/7f0dee22-711a-41c7-af11-98fb8db53584.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/8082514f-f4e8-4d65-9d0f-2a09d1d216ba.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/98b7c7b3-9bff-4360-8c92-52381316a722.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/9f9c0fb4-02fc-4a07-a2ca-236dd885c04f.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/a0b2bc95-260c-43e0-a306-54335f1fc45a.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/b1c61536-c676-44d5-ad24-ba140386f578.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/eec7babc-1f5d-4c7d-b3d1-8e1cd2f23be6.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/f40b434f-7b12-4954-a2a2-9eeac36ba1de.type.Reference.xml create mode 100644 resources/project/Root.type.ProjectPath/f682763a-4091-46d5-aef1-d0b35a5fb63c.type.Reference.xml create mode 100644 resources/project/uuid-237589a5-bfea-481f-b867-17fb19069feb.xml diff --git a/Mcode/+logger/+internal/LibraryInitializer.m b/Mcode/+logger/+internal/LibraryInitializer.m index 256fbe64..fa052e38 100644 --- a/Mcode/+logger/+internal/LibraryInitializer.m +++ b/Mcode/+logger/+internal/LibraryInitializer.m @@ -60,13 +60,12 @@ function initLibrary() end - function out = readdir(pth) - d = dir(pth); - d(ismember({d.name}, {'.','..'})) = []; - out = {d.name}; - end - end end +function out = readdir(pth) + d = dir(pth); + d(ismember({d.name}, {'.','..'})) = []; + out = {d.name}; +end diff --git a/SLF4M.prj b/SLF4M.prj new file mode 100644 index 00000000..0afc345d --- /dev/null +++ b/SLF4M.prj @@ -0,0 +1,2 @@ + + diff --git a/resources/project/Project.xml b/resources/project/Project.xml new file mode 100644 index 00000000..4a9e34e4 --- /dev/null +++ b/resources/project/Project.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/ProjectData.type.Info.xml b/resources/project/ProjectData.type.Info.xml new file mode 100644 index 00000000..f6167d06 --- /dev/null +++ b/resources/project/ProjectData.type.Info.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category.xml new file mode 100644 index 00000000..ef389457 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml new file mode 100644 index 00000000..b56f6594 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml new file mode 100644 index 00000000..52728019 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml new file mode 100644 index 00000000..5a873c8a --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml new file mode 100644 index 00000000..59cb0be6 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml new file mode 100644 index 00000000..27ca3e70 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml new file mode 100644 index 00000000..14d104f1 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml b/resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml new file mode 100644 index 00000000..5a6f8021 --- /dev/null +++ b/resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/.editorconfig.type.File.xml b/resources/project/Root.type.Files/.editorconfig.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/.editorconfig.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/.gitignore.type.File.xml b/resources/project/Root.type.Files/.gitignore.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/.gitignore.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/CHANGES.txt.type.File.xml b/resources/project/Root.type.Files/CHANGES.txt.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/CHANGES.txt.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/LICENSE.type.File.xml b/resources/project/Root.type.Files/LICENSE.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/LICENSE.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Makefile.type.File.xml b/resources/project/Root.type.Files/Makefile.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Makefile.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/LibraryInitializer.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/LibraryInitializer.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/LibraryInitializer.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/readtext.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/readtext.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/+internal.type.File/readtext.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Log4jConfigurator.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Log4jConfigurator.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Log4jConfigurator.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Logger.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Logger.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/Logger.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debug.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debug.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debug.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debugj.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debugj.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/debugj.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/error.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/error.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/error.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/errorj.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/errorj.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/errorj.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/globals.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/globals.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/globals.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/info.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/info.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/info.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/infoj.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/infoj.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/infoj.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/loggerCallImpl.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/loggerCallImpl.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/loggerCallImpl.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/mustBeA.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/mustBeA.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/mustBeA.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/size2str.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/size2str.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/private.type.File/size2str.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/trace.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/trace.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/trace.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/tracej.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/tracej.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/tracej.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/version.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/version.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/version.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warn.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warn.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warn.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warnj.m.type.File.xml b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warnj.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/+logger.type.File/warnj.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/Mcode.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/Mcode.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/Mcode.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/README.md.type.File.xml b/resources/project/Root.type.Files/README.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/README.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/VERSION.type.File.xml b/resources/project/Root.type.Files/VERSION.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/VERSION.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/compatter.type.File.xml b/resources/project/Root.type.Files/compatter.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/compatter.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/compatter.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/compatter.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/compatter.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File.xml b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/.gitkeep.type.File.xml b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/.gitkeep.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/.gitkeep.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/compatter.type.File/input-templates.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/dispstr.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/dispstr.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/+jdbc.type.File/@connection.type.File/dispstr.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+database.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/a_class.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/a_class.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/+package.type.File/a_class.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/+nested.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/+deeply.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/+a.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/class_in_pkg.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/class_in_pkg.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/class_in_pkg.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/func_in_pkg.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/func_in_pkg.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/+pkg.type.File/func_in_pkg.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/dev-tools.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/calling_Logger_directly.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/calling_Logger_directly.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/calling_Logger_directly.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/gen_dummy_log_entries.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/gen_dummy_log_entries.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/gen_dummy_log_entries.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/helloWorld.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/helloWorld.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/helloWorld.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/mydate.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/mydate.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/mydate.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/test_log.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/test_log.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/test_log.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/top_level_class.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/top_level_class.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/top_level_class.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/dev-tools.type.File/top_level_function.m.type.File.xml b/resources/project/Root.type.Files/dev-tools.type.File/top_level_function.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/dev-tools.type.File/top_level_function.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/doc-project.type.File.xml b/resources/project/Root.type.Files/doc-project.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/doc-project.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/doc-project.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/doc-project.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/doc-project.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/doc-project.type.File/Description for File Exchange.txt.type.File.xml b/resources/project/Root.type.Files/doc-project.type.File/Description for File Exchange.txt.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/doc-project.type.File/Description for File Exchange.txt.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/doc-project.type.File/Release Checklist.md.type.File.xml b/resources/project/Root.type.Files/doc-project.type.File/Release Checklist.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/doc-project.type.File/Release Checklist.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File.xml b/resources/project/Root.type.Files/docs.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/docs.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/CNAME.type.File.xml b/resources/project/Root.type.Files/docs.type.File/CNAME.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/CNAME.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/Gemfile.type.File.xml b/resources/project/Root.type.Files/docs.type.File/Gemfile.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/Gemfile.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/LICENSE-apache.txt.type.File.xml b/resources/project/Root.type.Files/docs.type.File/LICENSE-apache.txt.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/LICENSE-apache.txt.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/LICENSE-bsd.txt.type.File.xml b/resources/project/Root.type.Files/docs.type.File/LICENSE-bsd.txt.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/LICENSE-bsd.txt.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/UserGuide.md.type.File.xml b/resources/project/Root.type.Files/docs.type.File/UserGuide.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/UserGuide.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/_config.yml.type.File.xml b/resources/project/Root.type.Files/docs.type.File/_config.yml.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/_config.yml.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/images.type.File.xml b/resources/project/Root.type.Files/docs.type.File/images.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/images.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/images.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/docs.type.File/images.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/images.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/images.type.File/SLF4M-configurator-screenshot-scaled.png.type.File.xml b/resources/project/Root.type.Files/docs.type.File/images.type.File/SLF4M-configurator-screenshot-scaled.png.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/images.type.File/SLF4M-configurator-screenshot-scaled.png.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/docs.type.File/index.md.type.File.xml b/resources/project/Root.type.Files/docs.type.File/index.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/docs.type.File/index.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File.xml b/resources/project/Root.type.Files/lib.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/README.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/README.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/README.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/log4j1-config-gui-0.1.1.jar.type.File.xml b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/log4j1-config-gui-0.1.1.jar.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/java.type.File/log4j1-config-gui.type.File/log4j1-config-gui-0.1.1.jar.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/LICENSE.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/LICENSE.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/LICENSE.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/Birthday.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/Birthday.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/Birthday.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/UserID.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/UserID.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode-examples.type.File/UserID.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/convertArgsForPrintf.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/convertArgsForPrintf.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/convertArgsForPrintf.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/dispc.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/dispc.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/dispc.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/isErrorIdentifier.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/isErrorIdentifier.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/isErrorIdentifier.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/mycombvec.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/mycombvec.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/mycombvec.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/num2cellstr.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/num2cellstr.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/num2cellstr.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_array.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_array.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_array.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_cell.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_cell.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_cell.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_struct.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_struct.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_struct.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_tabular.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_tabular.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/prettyprint_tabular.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/size2str.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/size2str.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/size2str.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/sprintfv.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/sprintfv.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/+internal.type.File/sprintfv.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/Displayable.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/Displayable.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/Displayable.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DisplayableHandle.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DisplayableHandle.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DisplayableHandle.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DispstrHelper.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DispstrHelper.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/+dispstrlib.type.File/DispstrHelper.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstr.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstr.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstr.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstrs.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstrs.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/dispstrs.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/errords.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/errords.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/errords.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/fprintfds.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/fprintfds.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/fprintfds.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/pp.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/pp.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/pp.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/prettyprint.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/prettyprint.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/prettyprint.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec2struct.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec2struct.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/cellrec2struct.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/copyfields.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/copyfields.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/copyfields.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/parseOpts.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/parseOpts.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/private.type.File/parseOpts.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/sprintfds.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/sprintfds.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/sprintfds.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/warningds.m.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/warningds.m.type.File.xml new file mode 100644 index 00000000..80b5b161 --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/Mcode.type.File/warningds.m.type.File.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/README.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/README.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/README.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/VERSION.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/VERSION.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/VERSION.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Changelog.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Changelog.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Changelog.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Developer-Notes.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Developer-Notes.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Developer-Notes.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Index.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Index.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Index.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Text for File Exchange.txt.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Text for File Exchange.txt.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/Text for File Exchange.txt.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/User-Guide.md.type.File.xml b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/User-Guide.md.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/matlab.type.File/dispstr.type.File/dispstr-1.1.1.type.File/doc.type.File/User-Guide.md.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/1.type.DIR_SIGNIFIER.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/1.type.DIR_SIGNIFIER.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/1.type.DIR_SIGNIFIER.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-api-1.5.8.jar.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-api-1.5.8.jar.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-api-1.5.8.jar.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-log4j12-1.5.8.jar.type.File.xml b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-log4j12-1.5.8.jar.type.File.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/Root.type.Files/lib.type.File/shims.type.File/eq.type.File/R2020a.type.File/java.type.File/slf4j-1.5.8.type.File/slf4j-log4j12-1.5.8.jar.type.File.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/0aa08270-0ed5-406d-81d8-e4638427d2eb.type.Reference.xml b/resources/project/Root.type.ProjectPath/0aa08270-0ed5-406d-81d8-e4638427d2eb.type.Reference.xml new file mode 100644 index 00000000..f5a866d6 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/0aa08270-0ed5-406d-81d8-e4638427d2eb.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/1624ace7-14a8-48d0-9bc9-ec17a9081927.type.Reference.xml b/resources/project/Root.type.ProjectPath/1624ace7-14a8-48d0-9bc9-ec17a9081927.type.Reference.xml new file mode 100644 index 00000000..a4fd2fa5 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/1624ace7-14a8-48d0-9bc9-ec17a9081927.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/1add4901-cba8-470a-8afc-a1cc7f2fa4e6.type.Reference.xml b/resources/project/Root.type.ProjectPath/1add4901-cba8-470a-8afc-a1cc7f2fa4e6.type.Reference.xml new file mode 100644 index 00000000..21ea3928 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/1add4901-cba8-470a-8afc-a1cc7f2fa4e6.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/2428d1aa-4303-43f5-a145-7b4281fb4902.type.Reference.xml b/resources/project/Root.type.ProjectPath/2428d1aa-4303-43f5-a145-7b4281fb4902.type.Reference.xml new file mode 100644 index 00000000..0c6ca047 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/2428d1aa-4303-43f5-a145-7b4281fb4902.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/2da380df-27cd-427d-aba3-c990a1224559.type.Reference.xml b/resources/project/Root.type.ProjectPath/2da380df-27cd-427d-aba3-c990a1224559.type.Reference.xml new file mode 100644 index 00000000..7c5cc9ff --- /dev/null +++ b/resources/project/Root.type.ProjectPath/2da380df-27cd-427d-aba3-c990a1224559.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/31e01358-ddad-4fcf-842c-967ba02b66e1.type.Reference.xml b/resources/project/Root.type.ProjectPath/31e01358-ddad-4fcf-842c-967ba02b66e1.type.Reference.xml new file mode 100644 index 00000000..06ee22ed --- /dev/null +++ b/resources/project/Root.type.ProjectPath/31e01358-ddad-4fcf-842c-967ba02b66e1.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/3334e5ef-82b2-4bfa-b6e1-80e7ac0791cc.type.Reference.xml b/resources/project/Root.type.ProjectPath/3334e5ef-82b2-4bfa-b6e1-80e7ac0791cc.type.Reference.xml new file mode 100644 index 00000000..9caba015 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/3334e5ef-82b2-4bfa-b6e1-80e7ac0791cc.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/43c0ddcb-6514-498b-85f1-407dbc2ef663.type.Reference.xml b/resources/project/Root.type.ProjectPath/43c0ddcb-6514-498b-85f1-407dbc2ef663.type.Reference.xml new file mode 100644 index 00000000..411540cb --- /dev/null +++ b/resources/project/Root.type.ProjectPath/43c0ddcb-6514-498b-85f1-407dbc2ef663.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/4aab83e2-f779-4e9b-ad35-a6dd9dc8e4cc.type.Reference.xml b/resources/project/Root.type.ProjectPath/4aab83e2-f779-4e9b-ad35-a6dd9dc8e4cc.type.Reference.xml new file mode 100644 index 00000000..a5361162 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/4aab83e2-f779-4e9b-ad35-a6dd9dc8e4cc.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/52dec5cd-5320-47ee-8eb0-ca31c1274834.type.Reference.xml b/resources/project/Root.type.ProjectPath/52dec5cd-5320-47ee-8eb0-ca31c1274834.type.Reference.xml new file mode 100644 index 00000000..ff1fedae --- /dev/null +++ b/resources/project/Root.type.ProjectPath/52dec5cd-5320-47ee-8eb0-ca31c1274834.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/6777aeb9-a401-4f91-b8cf-ef13a41660ce.type.Reference.xml b/resources/project/Root.type.ProjectPath/6777aeb9-a401-4f91-b8cf-ef13a41660ce.type.Reference.xml new file mode 100644 index 00000000..5ae062dc --- /dev/null +++ b/resources/project/Root.type.ProjectPath/6777aeb9-a401-4f91-b8cf-ef13a41660ce.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/6b2289d2-4e59-47c3-8043-f54d18562a52.type.Reference.xml b/resources/project/Root.type.ProjectPath/6b2289d2-4e59-47c3-8043-f54d18562a52.type.Reference.xml new file mode 100644 index 00000000..6f2fe229 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/6b2289d2-4e59-47c3-8043-f54d18562a52.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/7f0dee22-711a-41c7-af11-98fb8db53584.type.Reference.xml b/resources/project/Root.type.ProjectPath/7f0dee22-711a-41c7-af11-98fb8db53584.type.Reference.xml new file mode 100644 index 00000000..3a3a256b --- /dev/null +++ b/resources/project/Root.type.ProjectPath/7f0dee22-711a-41c7-af11-98fb8db53584.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/8082514f-f4e8-4d65-9d0f-2a09d1d216ba.type.Reference.xml b/resources/project/Root.type.ProjectPath/8082514f-f4e8-4d65-9d0f-2a09d1d216ba.type.Reference.xml new file mode 100644 index 00000000..f69d4e7c --- /dev/null +++ b/resources/project/Root.type.ProjectPath/8082514f-f4e8-4d65-9d0f-2a09d1d216ba.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/98b7c7b3-9bff-4360-8c92-52381316a722.type.Reference.xml b/resources/project/Root.type.ProjectPath/98b7c7b3-9bff-4360-8c92-52381316a722.type.Reference.xml new file mode 100644 index 00000000..a97109c3 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/98b7c7b3-9bff-4360-8c92-52381316a722.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/9f9c0fb4-02fc-4a07-a2ca-236dd885c04f.type.Reference.xml b/resources/project/Root.type.ProjectPath/9f9c0fb4-02fc-4a07-a2ca-236dd885c04f.type.Reference.xml new file mode 100644 index 00000000..3db7e0e9 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/9f9c0fb4-02fc-4a07-a2ca-236dd885c04f.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/a0b2bc95-260c-43e0-a306-54335f1fc45a.type.Reference.xml b/resources/project/Root.type.ProjectPath/a0b2bc95-260c-43e0-a306-54335f1fc45a.type.Reference.xml new file mode 100644 index 00000000..f660171e --- /dev/null +++ b/resources/project/Root.type.ProjectPath/a0b2bc95-260c-43e0-a306-54335f1fc45a.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/b1c61536-c676-44d5-ad24-ba140386f578.type.Reference.xml b/resources/project/Root.type.ProjectPath/b1c61536-c676-44d5-ad24-ba140386f578.type.Reference.xml new file mode 100644 index 00000000..2ab18d2a --- /dev/null +++ b/resources/project/Root.type.ProjectPath/b1c61536-c676-44d5-ad24-ba140386f578.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/eec7babc-1f5d-4c7d-b3d1-8e1cd2f23be6.type.Reference.xml b/resources/project/Root.type.ProjectPath/eec7babc-1f5d-4c7d-b3d1-8e1cd2f23be6.type.Reference.xml new file mode 100644 index 00000000..6abb04e6 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/eec7babc-1f5d-4c7d-b3d1-8e1cd2f23be6.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/f40b434f-7b12-4954-a2a2-9eeac36ba1de.type.Reference.xml b/resources/project/Root.type.ProjectPath/f40b434f-7b12-4954-a2a2-9eeac36ba1de.type.Reference.xml new file mode 100644 index 00000000..9e7ca718 --- /dev/null +++ b/resources/project/Root.type.ProjectPath/f40b434f-7b12-4954-a2a2-9eeac36ba1de.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/Root.type.ProjectPath/f682763a-4091-46d5-aef1-d0b35a5fb63c.type.Reference.xml b/resources/project/Root.type.ProjectPath/f682763a-4091-46d5-aef1-d0b35a5fb63c.type.Reference.xml new file mode 100644 index 00000000..cb900f7f --- /dev/null +++ b/resources/project/Root.type.ProjectPath/f682763a-4091-46d5-aef1-d0b35a5fb63c.type.Reference.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/project/uuid-237589a5-bfea-481f-b867-17fb19069feb.xml b/resources/project/uuid-237589a5-bfea-481f-b867-17fb19069feb.xml new file mode 100644 index 00000000..1c0844ef --- /dev/null +++ b/resources/project/uuid-237589a5-bfea-481f-b867-17fb19069feb.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file