-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Autofill updated for new address filds and location dropdown.
- Loading branch information
Showing
4 changed files
with
187 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package entities; | ||
|
||
public class Location { | ||
private int id; | ||
private String name; | ||
private String address; | ||
private String town; | ||
private String state; | ||
private int zip; | ||
|
||
public Location(int id, String name, String address, String town, String state, int zip) | ||
{ | ||
this.id = id; | ||
this.name = name; | ||
this.address = address; | ||
this.town = town; | ||
this.state = state; | ||
this.zip = zip; | ||
} | ||
public int getId() | ||
{ | ||
return id; | ||
} | ||
public void setId(int id) | ||
{ | ||
this.id = id; | ||
} | ||
public String getName() | ||
{ | ||
return name; | ||
} | ||
public void setName(String name) | ||
{ | ||
this.name = name; | ||
} | ||
public String getAddress() | ||
{ | ||
return address; | ||
} | ||
public void setAddress(String address) | ||
{ | ||
this.address = address; | ||
} | ||
public String getTown() | ||
{ | ||
return town; | ||
} | ||
public void setTown(String town) | ||
{ | ||
this.town = town; | ||
} | ||
public String getState() | ||
{ | ||
return state; | ||
} | ||
public void setState(String state) | ||
{ | ||
this.state = state; | ||
} | ||
public int getZip() | ||
{ | ||
return zip; | ||
} | ||
public void setZip(int zip) | ||
{ | ||
this.zip = zip; | ||
} | ||
} |