|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| package org.jconfig.bootstrap; |
|
8 |
| |
|
9 |
| import org.jconfig.*; |
|
10 |
| import org.jconfig.handler.*; |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| public class LoadedItem { |
|
16 |
| |
|
17 |
| private String name; |
|
18 |
| private Configuration config; |
|
19 |
| private ConfigurationHandler handler; |
|
20 |
| |
|
21 |
| |
|
22 |
| |
|
23 |
1
| public LoadedItem(String name,Configuration config,ConfigurationHandler handler) {
|
|
24 |
1
| this.name = name;
|
|
25 |
1
| this.config = config;
|
|
26 |
1
| this.handler = handler;
|
|
27 |
| } |
|
28 |
| |
|
29 |
| |
|
30 |
| |
|
31 |
| |
|
32 |
| |
|
33 |
1
| public java.lang.String getName() {
|
|
34 |
1
| return name;
|
|
35 |
| } |
|
36 |
| |
|
37 |
| |
|
38 |
| |
|
39 |
| |
|
40 |
| |
|
41 |
1
| public org.jconfig.Configuration getConfig() {
|
|
42 |
1
| return config;
|
|
43 |
| } |
|
44 |
| |
|
45 |
| |
|
46 |
| |
|
47 |
| |
|
48 |
| |
|
49 |
1
| public org.jconfig.handler.ConfigurationHandler getHandler() {
|
|
50 |
1
| return handler;
|
|
51 |
| } |
|
52 |
| |
|
53 |
| } |