Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
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
Christopher Schankula
2XB3FinalProject
Commits
158bc106
Commit
158bc106
authored
7 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Patches
Plain Diff
add Species ADT first draft
parent
a6459cb7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/biotree/Species.java
+37
-0
37 additions, 0 deletions
src/biotree/Species.java
with
37 additions
and
0 deletions
src/biotree/Species.java
0 → 100644
+
37
−
0
View file @
158bc106
package
biotree
;
public
class
Species
{
private
final
String
species
;
private
final
String
bClass
;
private
final
String
order
;
private
final
String
family
;
private
final
String
genus
;
public
Species
(
String
species
,
String
bClass
,
String
order
,
String
family
,
String
genus
)
{
this
.
species
=
species
;
this
.
bClass
=
bClass
;
this
.
order
=
order
;
this
.
family
=
family
;
this
.
genus
=
genus
;
}
public
String
getSpecies
()
{
return
this
.
species
;
}
public
String
getBClass
()
{
return
this
.
bClass
;
}
public
String
getOrder
()
{
return
this
.
order
;
}
public
String
getFamily
()
{
return
this
.
family
;
}
public
String
getGenus
()
{
return
this
.
genus
;
}
}
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