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