Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
faang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
CSE 391
24wi
faang
Merge requests
!144
boschen
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
boschen
boschen_staff_page
into
main
Overview
1
Commits
3
Pipelines
3
Changes
1
Merged
Boshan Chen
requested to merge
boschen_staff_page
into
main
1 year ago
Overview
1
Commits
3
Pipelines
3
Changes
1
Expand
merge for boschen
0
0
Merge request reports
Viewing commit
7e70b2bc
Prev
Next
Show latest version
1 file
+
39
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7e70b2bc
2nd from boschen
· 7e70b2bc
Boshan Chen
authored
1 year ago
Product.java
0 → 100644
+
39
−
0
Options
public
class
Product
{
public
String
name
;
public
String
description
;
public
String
picture
;
public
String
altText
;
public
double
price
;
public
Product
(
String
name
,
String
description
,
String
picture
,
String
altText
,
double
price
)
{
this
.
name
=
name
;
this
.
description
=
description
;
this
.
picture
=
picture
;
this
.
altText
=
altText
;
this
.
price
=
price
;
}
public
String
getName
()
{
return
this
.
name
;
}
public
String
getAltText
()
{
return
this
.
altText
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
String
getPicture
()
{
return
this
.
picture
;
}
public
double
getPrice
()
{
return
this
.
price
;
}
public
String
toString
()
{
return
"Product"
;
}
}
Loading