Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Campus Hack 19
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
kd1u18
Campus Hack 19
Commits
2c004e31
Commit
2c004e31
authored
Feb 23, 2019
by
kd1u18
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit :)
parents
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Group.java
+7
-0
7 additions, 0 deletions
Group.java
User.java
+13
-0
13 additions, 0 deletions
User.java
with
20 additions
and
0 deletions
Group.java
0 → 100644
+
7
−
0
View file @
2c004e31
import
java.util.ArrayList
;
public
class
Group
{
int
groupID
;
ArrayList
<
User
>
users
;
}
This diff is collapsed.
Click to expand it.
User.java
0 → 100644
+
13
−
0
View file @
2c004e31
import
java.util.ArrayList
;
/*
Represents a single User of the app.
*/
public
class
User
{
String
userName
;
String
password
;
String
screenName
;
ArrayList
<
Group
>
groups
;
}
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