Independent Task: Create WolfScheduler
For the remainder of the tutorial, you’ll implement the first part of the WolfScheduler project.
Learning Outcomes
- Create an Eclipse project
- Create a package
- Create a class
Best Practice: Integrated Development Environments (IDEs)
Use the Eclipse IDE to create a Java project, package, and class!
Eclipse Project, Package, and Class Creation
References:
- Eclipse Project Creation - see Guided Task: Your First Eclipse Project - Create an Eclipse Project
- Eclipse Package Creation - see Guided Task: Your First Eclipse Project - Create a Package
- Eclipse Class Creation - see Guided Task: Your First Eclipse Project - Create a Class
Tasks
Complete the following tasks to set up your WolfScheduler
project.
- Create a new project called
WolfScheduler
. The project MUST have the exact nameWolfScheduler
with a capitalW
andS
or the automated grading will not work. - Create a new package called
edu.ncsu.csc216.wolf_scheduler.course
in thesrc
folder of theWolfScheduler
project. - Create a new Java class called
Course
in theedu.ncsu.csc216.wolf_scheduler.course
package of theWolfScheduler
project
Check Your Progress
Verify that your project has the following structure as shown in text and screenshot form, below. Note that in the screenshot of the Package Explorer the only visible part of the package name is course
due to IDE Customization.
WolfScheduler
|-> src/
|-> edu.ncsu.csc216.wolf_scheduler.course
|-> Course