1 7 package org.objectweb.speedo.pobjects.inheritance.ejboo2; 8 9 10 13 14 public class MaterielPersistantImpl extends ArticlePersistantImpl implements MaterielPersistant { 15 16 19 private float prix; 20 21 24 private String couleur; 25 26 29 public String getCouleur() { 30 return couleur; 31 } 32 35 public void setCouleur(String couleur) { 36 this.couleur = couleur; 37 } 38 41 public float getPrix() { 42 return prix; 43 } 44 47 public void setPrix(float prix) { 48 this.prix = prix; 49 } 50 51 public MaterielPersistantImpl() { 52 super("M"); 53 } 54 55 public MaterielPersistantImpl(long idart) { 56 super("M", idart); 57 } 58 59 public String toString() { 60 61 String s = new String (this.getClass().getName()); 62 s += " id="+this.getId().toString(); 63 s += " nom="+this.getNom(); 64 s += " description="+this.getDescription(); 65 s += " type="+this.getType(); 66 s += " prix="+prix; 67 s += " couleur="+couleur; 68 return s; 69 } 70 } 71 | Popular Tags |