summer-2024: update schedule

This commit is contained in:
Price Hiller 2024-06-12 10:55:33 -05:00
parent 33cf75a7c6
commit 4e2c92c211
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
10 changed files with 74 additions and 30 deletions

View File

@ -23,4 +23,14 @@ public class Apatosaurus extends Sauropod {
public String getType() {
return super.getType();
}
/**
* Returns the subtype: "Apatosaurus"
*
* @return the string "Apatosaurus"
*/
public String getSubType() {
return "Apatosaurus";
}
}

View File

@ -23,4 +23,13 @@ public class Brachiosaurus extends Sauropod {
public String getType() {
return super.getType();
}
/**
* Returns the subtype: "Brachiosaurus"
*
* @return the string "Brachiosaurus"
*/
public String getSubType() {
return "Brachiosaurus";
}
}

View File

@ -3,7 +3,8 @@ package com.zfp106.lab1;
/**
* A "Jurassic" Park. Like a zoo, but for dinosaurs.
*
* Allows holding collections of dinosaurs up to a set capacity and can have a name for the park.
* Allows holding collections of dinosaurs up to a set capacity and can have a
* name for the park.
*
*/
public class Park {
@ -24,7 +25,8 @@ public class Park {
}
/**
* Get the string representation of the park, showing the name of the park and all dinosaurs
* Get the string representation of the park, showing the name of the park and
* all dinosaurs
* within the park
*
* @return string representation of the park

View File

@ -82,9 +82,7 @@ public abstract class Sauropod implements Dinosaur {
*
* @return the subtype of the Sauropod
*/
public String getSubType() {
return this.subType;
}
public abstract String getSubType();
/**
* Set the subtype of the Sauropod

View File

@ -82,9 +82,7 @@ public abstract class Stegosaur implements Dinosaur {
*
* @return the subtype of the Stegosaur
*/
public String getSubType() {
return this.subType;
}
public abstract String getSubType();
/**
* Set the subtype of the Stegosaur

View File

@ -23,4 +23,13 @@ public class Stegosaurus extends Stegosaur {
public String getType() {
return super.getType();
}
/**
* Returns the subtype: "Stegosaurus"
*
* @return the string "Stegosaurus"
*/
public String getSubType() {
return "Stegosaurus";
}
}

View File

@ -82,9 +82,7 @@ public abstract class Theropod implements Dinosaur {
*
* @return the subtype of the Theropod
*/
public String getSubType() {
return this.subType;
}
public abstract String getSubType();
/**
* Set the subtype of the Theropod

View File

@ -23,4 +23,13 @@ public class Tyrannosaurus extends Theropod {
public String getType() {
return super.getType();
}
/**
* Returns the subtype: "Tyrannosaurus"
*
* @return the string "Tyrannosaurus"
*/
public String getSubType() {
return "Tyrannosaurus";
}
}

View File

@ -23,4 +23,13 @@ public class Velociraptor extends Theropod {
public String getType() {
return super.getType();
}
/**
* Returns the subtype: "Velociraptor"
*
* @return the string "Velociraptor"
*/
public String getSubType() {
return "Velociraptor";
}
}

View File

@ -28,11 +28,13 @@
* Courses :college:
** Applications Programming :cs3443:
SCHEDULED: <2024-06-03 Mon 10:00-12:00 ++1w> <2024-05-29 Wed 10:00-12:00 ++1w>
- COURSE: =CS3443=
- LOCATION: =Online (zoom)=
*** TODO [#A] Applications Programming Mondays
SCHEDULED: <2024-06-17 Mon 10:00-12:00 ++1w>
*** TODO [#A] Applications Programming Wednesdays
SCHEDULED: <2024-06-12 Wed 10:00-12:00 ++1w>
** Systems Programming :cs3424:
@ -40,11 +42,11 @@ SCHEDULED: <2024-06-03 Mon 10:00-12:00 ++1w> <2024-05-29 Wed 10:00-12:00 ++1w>
- LOCATION: =Online (zoom)=
*** Systems Programming Lecture
SCHEDULED: <2024-06-03 Mon 16:00-18:00 ++1w> <2024-05-29 Wed 16:00-18:00 ++1w>
- LOCATION: =Online (zoom)=
**** TODO [#A] Systems Programming Lecture Mondays
SCHEDULED: <2024-06-17 Mon 16:00-18:00 ++1w>
**** TODO [#A] Systems Programming Lecture Wednesdays
SCHEDULED: <2024-06-12 Wed 16:00-18:00 ++1w>
*** Systems Programming Lab
SCHEDULED: <2024-06-03 Mon 18:00-19:15 ++1w>
- LOCATION: =Online (zoom)=
*** TODO [#A] Systems Programming Lab
SCHEDULED: <2024-06-12 Wed 18:00-19:15 ++1w>