package reversetutorial.jdo; import java.util.*; /** * Auto-generated by: * kodo.jdbc.meta.ReverseMappingTool$ReverseCodeGenerator */ public class Magazine { private Set articles = new HashSet(); private String isbn; private int issue; private String name; private float price; private Publisher publisher; public Magazine() { } public Magazine(String isbn, int issue) { this.isbn = isbn; this.issue = issue; } public Set getArticles() { return articles; } public void setArticles(Set articles) { this.articles = articles; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public int getIssue() { return issue; } public void setIssue(int issue) { this.issue = issue; } public String getName() { return name; } public void setName(String name) { this.name = name; } public float getPrice() { return price; } public void setPrice(float price) { this.price = price; } public Publisher getPublisher() { return publisher; } public void setPublisher(Publisher publisher) { this.publisher = publisher; } }