1 27 28 package org.objectweb.speedo.pobjects.relations; 29 30 import java.util.Collection ; 31 import java.util.ArrayList ; 32 33 public class A { 34 35 private String name; 36 37 private B b; 39 private Collection bs; 41 private Collection nbs; 43 public A () { 44 } 45 46 public A (String name) { 47 this.name = name; 48 this.bs = new ArrayList (); 49 this.nbs = new ArrayList (); 50 } 51 52 public String getName() { 53 return name; 54 } 55 56 public B getB() { 57 return b; 58 } 59 60 public void setB(B b) { 61 this.b = b; 62 } 63 64 public Collection getBs() { 65 return bs; 66 } 67 68 public void setBs(Collection bs) { 69 this.bs = bs; 70 } 71 72 public Collection getNbs() { 73 return nbs; 74 } 75 76 public void setNbs(Collection nbs) { 77 this.nbs = nbs; 78 } 79 80 public void setName(String name) { 81 this.name = name; 82 } 83 } 84 | Popular Tags |