Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
P1
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cse332-20su-tasks
P1
Commits
6b62b6ac
Commit
6b62b6ac
authored
9 years ago
by
Royden Luckey
Browse files
Options
Downloads
Patches
Plain Diff
Update Javadoc from addWork() to add() for FIFOWorkList and LIFOWorkList
parent
481472d6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/cse332/interfaces/worklists/FIFOWorkList.java
+1
-1
1 addition, 1 deletion
src/cse332/interfaces/worklists/FIFOWorkList.java
src/cse332/interfaces/worklists/LIFOWorkList.java
+1
-1
1 addition, 1 deletion
src/cse332/interfaces/worklists/LIFOWorkList.java
with
2 additions
and
2 deletions
src/cse332/interfaces/worklists/FIFOWorkList.java
+
1
−
1
View file @
6b62b6ac
...
...
@@ -3,7 +3,7 @@ package cse332.interfaces.worklists;
/**
* A subclass of WorkList that stores its elements in FIFO order.
* All subclasses of this class implicitly agree to the contract to
* be a FIFO queue. That is, add
Work
() must add to the "end" and
* be a FIFO queue. That is, add() must add to the "end" and
* next() must remove from the "beginning".
*
* @author Adam Blank
...
...
This diff is collapsed.
Click to expand it.
src/cse332/interfaces/worklists/LIFOWorkList.java
+
1
−
1
View file @
6b62b6ac
...
...
@@ -3,7 +3,7 @@ package cse332.interfaces.worklists;
/**
* A subclass of WorkList that stores its elements in LIFO order.
* All subclasses of this class implicitly agree to the contract to
* be a LIFO queue. That is, add
Work
() must add to the "top" and
* be a LIFO queue. That is, add() must add to the "top" and
* next() must remove from the "top".
*
* @author Adam Blank
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment