You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.1 KiB
90 lines
2.1 KiB
package java01;
|
|
|
|
public class Job {
|
|
private String title;
|
|
private String company;
|
|
private String salary;
|
|
private String location;
|
|
private String experience;
|
|
private String education;
|
|
private String skills;
|
|
|
|
public Job(String title, String company, String salary, String location, String experience, String education, String skills) {
|
|
this.title = title;
|
|
this.company = company;
|
|
this.salary = salary;
|
|
this.location = location;
|
|
this.experience = experience;
|
|
this.education = education;
|
|
this.skills = skills;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getCompany() {
|
|
return company;
|
|
}
|
|
|
|
public void setCompany(String company) {
|
|
this.company = company;
|
|
}
|
|
|
|
public String getSalary() {
|
|
return salary;
|
|
}
|
|
|
|
public void setSalary(String salary) {
|
|
this.salary = salary;
|
|
}
|
|
|
|
public String getLocation() {
|
|
return location;
|
|
}
|
|
|
|
public void setLocation(String location) {
|
|
this.location = location;
|
|
}
|
|
|
|
public String getExperience() {
|
|
return experience;
|
|
}
|
|
|
|
public void setExperience(String experience) {
|
|
this.experience = experience;
|
|
}
|
|
|
|
public String getEducation() {
|
|
return education;
|
|
}
|
|
|
|
public void setEducation(String education) {
|
|
this.education = education;
|
|
}
|
|
|
|
public String getSkills() {
|
|
return skills;
|
|
}
|
|
|
|
public void setSkills(String skills) {
|
|
this.skills = skills;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Job{" +
|
|
"title='" + title + '\'' +
|
|
", company='" + company + '\'' +
|
|
", salary='" + salary + '\'' +
|
|
", location='" + location + '\'' +
|
|
", experience='" + experience + '\'' +
|
|
", education='" + education + '\'' +
|
|
", skills='" + skills + '\'' +
|
|
'}';
|
|
}
|
|
}
|