1 /*
2 * Created on 22.mar.2003
3 *
4 */
5 package net.sf.panoptes.model.component.registry;
6
7 import java.util.HashMap;
8
9 /***
10 *
11 *
12 * @author Dag Liodden
13 * @version 0.1
14 */
15 public class ConfiguratorEntry {
16 private String name;
17 private ComponentName pattern;
18 private Class clazz;
19 private HashMap attributes;
20
21 public ConfiguratorEntry(String name, Class clazz, ComponentName pattern, HashMap attributes) {
22 this.name = name;
23 this.clazz = clazz;
24 this.pattern = pattern;
25 this.attributes = attributes;
26 }
27
28 /***
29 * @return
30 */
31 public Class getClazz() {
32 return clazz;
33 }
34
35 /***
36 * @return
37 */
38 public String getName() {
39 return name;
40 }
41
42 /***
43 * @return
44 */
45 public ComponentName getPattern() {
46 return pattern;
47 }
48
49 /***
50 * @return
51 */
52 public HashMap getAttributes() {
53 return attributes;
54 }
55
56 }
This page was automatically generated by Maven