1 26 27 package org.objectweb.util.monolog.provider.lib.topics; 28 29 35 public class TopicsValue { 36 37 40 protected Class ref; 41 42 45 protected String name; 46 47 50 protected String [] description; 51 52 53 54 57 public TopicsValue(Class ref, String name, String [] desccription) { 58 this.setRef(ref); 59 this.setName(name); 60 this.setDescription(desccription); 61 } 62 63 66 70 public String [] getDescription() { 71 return description; 72 } 73 74 78 public String getName() { 79 return name; 80 } 81 82 86 public void setDescription(String [] description) { 87 this.description = description; 88 } 89 90 94 public void setName(String name) { 95 this.name = name; 96 } 97 98 102 public Object getRef() { 103 return ref; 104 } 105 106 110 public void setRef(Class ref) { 111 this.ref = ref; 112 } 113 114 } | Popular Tags |