Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MyFridge
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Rosemary
MyFridge
Commits
0c90b761
Commit
0c90b761
authored
6 years ago
by
Jenny
Browse files
Options
Downloads
Patches
Plain Diff
more Classes
parent
3bc6c3f0
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
Java codes/src/Date.java
+13
-0
13 additions, 0 deletions
Java codes/src/Date.java
Java codes/src/User.java
+8
-0
8 additions, 0 deletions
Java codes/src/User.java
with
21 additions
and
0 deletions
Java codes/src/Date.java
0 → 100644
+
13
−
0
View file @
0c90b761
public
class
Date
{
private
int
day
;
private
int
month
;
private
int
year
;
public
Date
(
int
day
,
int
month
,
int
year
)
{
this
.
day
=
day
;
this
.
month
=
month
;
this
.
year
=
year
;
}
}
This diff is collapsed.
Click to expand it.
Java codes/src/User.java
0 → 100644
+
8
−
0
View file @
0c90b761
public
class
User
{
private
String
username
;
private
int
id
;
private
String
location
;
}
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