Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Homework 2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
CSE156 Group
Homework 2
Commits
5a669305
Commit
5a669305
authored
10 years ago
by
Russell Furnas Kaup
Browse files
Options
Downloads
Patches
Plain Diff
Address updated
parent
28107ca2
Branches
main
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Assignment2/src/assignment2/Address.java
+47
-1
47 additions, 1 deletion
Assignment2/src/assignment2/Address.java
with
47 additions
and
1 deletion
Assignment2/src/assignment2/Address.java
+
47
−
1
View file @
5a669305
...
...
@@ -8,6 +8,52 @@ public class Address {
String
country
;
Address
(
String
street
,
String
city
,
String
state
,
String
zip
,
String
country
)
{
this
.
street
=
street
;
this
.
city
=
city
;
this
.
state
=
state
;
this
.
zip
=
zip
;
this
.
country
=
country
;
}
public
String
getStreet
()
{
return
street
;
}
public
void
setStreet
(
String
street
)
{
this
.
street
=
street
;
}
public
String
getCity
()
{
return
city
;
}
public
void
setCity
(
String
city
)
{
this
.
city
=
city
;
}
public
String
getState
()
{
return
state
;
}
public
void
setState
(
String
state
)
{
this
.
state
=
state
;
}
public
String
getZip
()
{
return
zip
;
}
public
void
setZip
(
String
zip
)
{
this
.
zip
=
zip
;
}
public
String
getCountry
()
{
return
country
;
}
public
void
setCountry
(
String
country
)
{
this
.
country
=
country
;
}
}
\ No newline at end of file
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