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 + '\'' + '}'; } }