JavaScript is disabled on your browser.
CSCI 1302 String List Project
Project Description
Skip navigation links
Approved for:
Spring 2026
Overview
Package
Class
Use
Tree
Index
Help
SEARCH:
Uses of Class
cs1302.adt.Node
Packages that use
Node
Package
Description
cs1302.adt
Classes and interfaces to support
abstract data types
(ADTs).
Uses of
Node
in
cs1302.adt
Methods in
cs1302.adt
that return
Node
Modifier and Type
Method
Description
Node
Node.
getNext
()
Returns the next node.
Methods in
cs1302.adt
with parameters of type
Node
Modifier and Type
Method
Description
void
Node.
setNext
(
Node
next)
Sets the next node.
Constructors in
cs1302.adt
with parameters of type
Node
Modifier
Constructor
Description
Node
(
String
item,
Node
next)
Construct a node with the specified
item
and
next
.