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
d500dcd3
Commit
d500dcd3
authored
7 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Patches
Plain Diff
generalize "speciesId" to "taxonId"
parent
149941ec
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/record/Record.java
+4
-4
4 additions, 4 deletions
src/record/Record.java
with
4 additions
and
4 deletions
src/record/Record.java
+
4
−
4
View file @
d500dcd3
...
...
@@ -3,7 +3,7 @@ package record;
public
class
Record
{
private
final
int
eventId
;
private
final
String
occurId
;
private
final
int
species
Id
;
private
final
int
taxon
Id
;
private
final
int
count
;
private
final
float
latitude
;
...
...
@@ -17,10 +17,10 @@ public class Record {
/**
* Initialize Record abstract object
*/
public
Record
(
int
eventId
,
String
occurId
,
int
species
Id
,
int
count
,
float
latitude
,
float
longitude
,
String
locality
,
int
depth
,
int
year
,
int
month
,
int
day
,
int
hour
,
int
minute
)
{
public
Record
(
int
eventId
,
String
occurId
,
int
taxon
Id
,
int
count
,
float
latitude
,
float
longitude
,
String
locality
,
int
depth
,
int
year
,
int
month
,
int
day
,
int
hour
,
int
minute
)
{
this
.
eventId
=
eventId
;
this
.
occurId
=
occurId
;
this
.
speciesId
=
species
Id
;
this
.
taxonId
=
taxon
Id
;
this
.
count
=
count
;
this
.
latitude
=
latitude
;
...
...
@@ -54,7 +54,7 @@ public class Record {
* @return The species ID of the object
*/
public
int
getSpeciesId
()
{
return
species
Id
;
return
taxon
Id
;
}
/**
* Gets the count of the object
...
...
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