Mercurial > dive4elements > framework
comparison artifact-database/src/main/java/de/intevation/artifactdatabase/AbstractCallContext.java @ 366:1f51f3c46efe
AbstractCallContext: Instance vars are now Maps instead of Hashmaps.
artifacts/trunk@3647 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 11 Jan 2012 10:58:34 +0000 |
parents | 5b6ba54d488a |
children | f367be55dd35 |
comparison
equal
deleted
inserted
replaced
365:81ae7948bff0 | 366:1f51f3c46efe |
---|---|
46 protected CallMeta callMeta; | 46 protected CallMeta callMeta; |
47 | 47 |
48 /** | 48 /** |
49 * Map to act like a clipboard when nesting calls like a proxy artifact. | 49 * Map to act like a clipboard when nesting calls like a proxy artifact. |
50 */ | 50 */ |
51 protected HashMap customValues; | 51 protected Map customValues; |
52 | 52 |
53 /** | 53 /** |
54 * Map to act like a clipboard when nesting calls like a proxy artifact. | 54 * Map to act like a clipboard when nesting calls like a proxy artifact. |
55 */ | 55 */ |
56 protected HashMap<Object, List<DataProvider>> dataProviders; | 56 protected Map<Object, List<DataProvider>> dataProviders; |
57 | 57 |
58 | 58 |
59 /** | 59 /** |
60 * The default constructor of this abstract CallContext. | 60 * The default constructor of this abstract CallContext. |
61 * | 61 * |