1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| package org.apache.tapestry.form; |
16 |
| |
17 |
| import org.apache.hivemind.HiveMind; |
18 |
| import org.apache.hivemind.impl.MessageFormatter; |
19 |
| import org.apache.tapestry.IComponent; |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
| |
25 |
| class FormMessages |
26 |
| { |
27 |
| private final static MessageFormatter _formatter = new MessageFormatter(FormMessages.class); |
28 |
| |
29 |
1
| static String formTooManyIds(IComponent form, int actualCount, IComponent component)
|
30 |
| { |
31 |
1
| return _formatter.format(
|
32 |
| "form-too-many-ids", |
33 |
| form.getExtendedId(), |
34 |
| new Integer(actualCount), |
35 |
| component.getExtendedId()); |
36 |
| } |
37 |
| |
38 |
2
| static String formIdMismatch(IComponent form, int mismatchIndex, String expectedId,
|
39 |
| String actualId, IComponent component) |
40 |
| { |
41 |
2
| return _formatter.format("form-id-mismatch", new Object[]
|
42 |
| { form.getExtendedId(), new Integer(mismatchIndex + 1), expectedId, actualId, |
43 |
| component.getExtendedId() }); |
44 |
| } |
45 |
| |
46 |
1
| static String formTooFewIds(IComponent form, int remainingCount, String nextExpectedId)
|
47 |
| { |
48 |
1
| return _formatter.format("form-too-few-ids", form.getExtendedId(), new Integer(
|
49 |
| remainingCount), nextExpectedId); |
50 |
| } |
51 |
| |
52 |
1
| static String encodingTypeContention(IComponent form, String establishedEncodingType,
|
53 |
| String newEncodingType) |
54 |
| { |
55 |
1
| return _formatter.format(
|
56 |
| "encoding-type-contention", |
57 |
| form.getExtendedId(), |
58 |
| establishedEncodingType, |
59 |
| newEncodingType); |
60 |
| } |
61 |
| |
62 |
1
| static String fieldAlreadyPrerendered(IComponent field)
|
63 |
| { |
64 |
1
| return _formatter.format("field-already-prerendered", field);
|
65 |
| } |
66 |
| |
67 |
1
| static String linkSubmitMayNotNest(IComponent inner, IComponent outer)
|
68 |
| { |
69 |
1
| return _formatter.format("link-submit-may-not-nest", inner.getExtendedId(), outer
|
70 |
| .getExtendedId(), HiveMind.getLocationString(outer)); |
71 |
| } |
72 |
| } |