From d6bc8bb9cd5406f8c456cb0bbf6315317125ef51 Mon Sep 17 00:00:00 2001 From: Moritz Dieing <63721811+moritzdieing@users.noreply.github.com> Date: Sat, 20 Feb 2021 01:01:41 +0100 Subject: [PATCH] package info for content and infocontent --- .../typicalc/view/content/infocontent/package-info.java | 7 +++++++ .../java/edu/kit/typicalc/view/content/package-info.java | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 src/main/java/edu/kit/typicalc/view/content/infocontent/package-info.java create mode 100644 src/main/java/edu/kit/typicalc/view/content/package-info.java diff --git a/src/main/java/edu/kit/typicalc/view/content/infocontent/package-info.java b/src/main/java/edu/kit/typicalc/view/content/infocontent/package-info.java new file mode 100644 index 0000000..fdd4dfb --- /dev/null +++ b/src/main/java/edu/kit/typicalc/view/content/infocontent/package-info.java @@ -0,0 +1,7 @@ +/** + * This package only contains the classes needed to build the start page of the application. + * The start page consists of an introduction and a short demonstration of the features of the website. + */ +@org.springframework.lang.NonNullFields +@org.springframework.lang.NonNullApi +package edu.kit.typicalc.view.content.infocontent; \ No newline at end of file diff --git a/src/main/java/edu/kit/typicalc/view/content/package-info.java b/src/main/java/edu/kit/typicalc/view/content/package-info.java new file mode 100644 index 0000000..a25b533 --- /dev/null +++ b/src/main/java/edu/kit/typicalc/view/content/package-info.java @@ -0,0 +1,8 @@ +/** + * The content package contains two sub-packages. One package consists of the structures needed to display the + * type inference algorithm step by step, the other one contains structures to build the start page of the website. + * The classes inside the content package are used by both sub packages. + */ +@org.springframework.lang.NonNullFields +@org.springframework.lang.NonNullApi +package edu.kit.typicalc.view.content; \ No newline at end of file