1 18 package org.objectweb.speedo.pobjects.relations; 19 20 import java.util.Collection ; 21 import java.util.ArrayList ; 22 23 27 public class C { 28 private String name; 29 30 private Long ident; 31 32 private D d; 34 private Collection ds; 36 private Collection nds; 38 public C () { 39 } 40 41 public C (String name) { 42 this.name = name; 43 this.ds = new ArrayList (); 44 this.nds = new ArrayList (); 45 } 46 47 public String getName() { 48 return name; 49 } 50 51 public void setName(String name) { 52 this.name = name; 53 } 54 55 public Long getIdent() { 56 return ident; 57 } 58 59 public void setIdent(Long ident) { 60 this.ident = ident; 61 } 62 63 public D getD() { 64 return d; 65 } 66 67 public void setD(D d) { 68 this.d = d; 69 } 70 71 public Collection getDs() { 72 return ds; 73 } 74 75 public void setDs(Collection ds) { 76 this.ds = ds; 77 } 78 79 public Collection getNds() { 80 return nds; 81 } 82 83 public void setNds(Collection nds) { 84 this.nds = nds; 85 } 86 } 87 | Popular Tags |