me.himanshusoni.gpxparser.modal.Person Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingset3-demos Show documentation
Show all versions of swingset3-demos Show documentation
Demonstrating the abilities of the Swing UI Toolkit swingset2 and swingx aka swingset3
The newest version!
package me.himanshusoni.gpxparser.modal;
/**
* Created by Himanshu on 7/5/2015.
*/
public class Person {
private String name;
private Email email;
private Link link;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Email getEmail() {
return email;
}
public void setEmail(Email email) {
this.email = email;
}
public Link getLink() {
return link;
}
public void setLink(Link link) {
this.link = link;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy