1 18 package org.objectweb.speedo.pobjects.inheritance.ejboo; 19 20 import java.util.ArrayList ; 21 import java.util.Collection ; 22 23 27 public abstract class Article { 28 29 private long id; 30 private Catalogue catalogue; 31 private Collection marches; 32 33 public Article(long id) { 34 this.id = id; 35 marches = new ArrayList (); 36 } 37 38 public Catalogue getCatalogue() { 39 return catalogue; 40 } 41 42 public void setCatalogue(Catalogue catalogue) { 43 this.catalogue = catalogue; 44 } 45 46 public Collection getMarches() { 47 return marches; 48 } 49 50 public void setMarches(Collection marches) { 51 this.marches = marches; 52 } 53 54 public long getId() { 55 return id; 56 } 57 } 58 | Popular Tags |