diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Customer.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Customer.java index ce0d4e839d272f746531854f46af047095098c47..30ceb400dd5d349d7185b5493122e1545fd7f43d 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Customer.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Customer.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + import java.io.*; import java.net.*; diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Farm.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Farm.java index f5385a7da7b12daec9698f1ac230642118f27855..6a62efa52970ecca174cf5b3a801cefab4af4e94 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Farm.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Client_Farm.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + import java.io.*; import java.net.*; diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Customer.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Customer.java index 1ae3e48540c630bef80513b18ac5e8b986479bc1..135e7d8b3510834bf271aa6590c627a2c10c2948 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Customer.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Customer.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + import simkit.SimEntityBase; import simkit.random.RandomVariate; import simkit.random.RandomVariateFactory; diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/FarmStore.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/FarmStore.java index b099bc6bb78dad829f520fdb6c5969fc08b72131..a671770146c2553106c99a211d0058c2ea6f557f 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/FarmStore.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/FarmStore.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + import java.text.DecimalFormat; public class FarmStore { diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/LivestockRanch.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/LivestockRanch.java index 5db0ee64982065b596cd7d7c162cd2c8e8948925..d22d3d6dcfba261698e9148b939188fee5616b6c 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/LivestockRanch.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/LivestockRanch.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + public class LivestockRanch { private int totalCattle; private int totalPigs; diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Server.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Server.java index ed276501a874c6af3d96562e835e503c12e6faa7..5aa492af57055dd1f26c27de1f743c7490f50506 100644 --- a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Server.java +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/Server.java @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2008-2023, MOVES Institute, Naval Postgraduate School (NPS). All rights reserved. + * This work is provided under a BSD open-source license, see project license.html and license.txt + */ +package MV3500Cohort2023MarchJune.projects.Islas; + import java.io.*; import java.net.*; diff --git a/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/package-info.java b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/package-info.java new file mode 100644 index 0000000000000000000000000000000000000000..3ea760dfbc241591cc778679113cb5b64aeb0c12 --- /dev/null +++ b/assignments/src/MV3500Cohort2023MarchJune/projects/Islas/package-info.java @@ -0,0 +1,10 @@ +/** + * Final project assignments supporting the NPS MOVES MV3500 Networked Graphics course. + * + * @see <a href="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/tree/master/assignments">networkedGraphicsMV3500 assignments</a> + * @see java.lang.Package + * @see <a href="https://stackoverflow.com/questions/22095487/why-is-package-info-java-useful">StackOverflow: why-is-package-info-java-useful</a> + * @see <a href="https://stackoverflow.com/questions/624422/how-do-i-document-packages-in-java">StackOverflow: how-do-i-document-packages-in-java</a> + */ + +package MV3500Cohort2023MarchJune.projects.Islas;