|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| package org.apache.tapestry.spec; |
|
16 |
| |
|
17 |
| import org.apache.hivemind.impl.BaseLocatable; |
|
18 |
| |
|
19 |
| |
|
20 |
| |
|
21 |
| |
|
22 |
| |
|
23 |
| public class InjectSpecificationImpl extends BaseLocatable implements InjectSpecification |
|
24 |
| { |
|
25 |
| private String _property; |
|
26 |
| |
|
27 |
| private String _object; |
|
28 |
| |
|
29 |
| private String _type; |
|
30 |
| |
|
31 |
1212
| public String getObject()
|
|
32 |
| { |
|
33 |
1212
| return _object;
|
|
34 |
| } |
|
35 |
| |
|
36 |
1221
| public void setObject(String object)
|
|
37 |
| { |
|
38 |
1221
| _object = object;
|
|
39 |
| } |
|
40 |
| |
|
41 |
2397
| public String getProperty()
|
|
42 |
| { |
|
43 |
2397
| return _property;
|
|
44 |
| } |
|
45 |
| |
|
46 |
1233
| public void setProperty(String name)
|
|
47 |
| { |
|
48 |
1233
| _property = name;
|
|
49 |
| } |
|
50 |
| |
|
51 |
1179
| public String getType()
|
|
52 |
| { |
|
53 |
1179
| return _type;
|
|
54 |
| } |
|
55 |
| |
|
56 |
1176
| public void setType(String type)
|
|
57 |
| { |
|
58 |
1176
| _type = type;
|
|
59 |
| } |
|
60 |
| } |