KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > form > FormMessages


1 // Copyright 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.tapestry.form;
16
17 import org.apache.hivemind.impl.MessageFormatter;
18 import org.apache.tapestry.IComponent;
19
20 /**
21  * @author Howard M. Lewis Ship
22  * @since 4.0
23  */

24 class FormMessages
25 {
26     protected static MessageFormatter _formatter = new MessageFormatter(FormMessages.class,
27             "FormStrings");
28
29     static String JavaDoc formTooManyIds(IComponent form, int actualCount, IComponent component)
30     {
31         return _formatter.format(
32                 "form-too-many-ids",
33                 form.getExtendedId(),
34                 new Integer JavaDoc(actualCount),
35                 component.getExtendedId());
36     }
37
38     static String JavaDoc formIdMismatch(IComponent form, int mismatchIndex, String JavaDoc expectedId,
39             String JavaDoc actualId, IComponent component)
40     {
41         return _formatter.format("form-id-mismatch", new Object JavaDoc[]
42         { form.getExtendedId(), new Integer JavaDoc(mismatchIndex + 1), expectedId, actualId,
43                 component.getExtendedId() });
44     }
45
46     static String JavaDoc formTooFewIds(IComponent form, int remainingCount, String JavaDoc nextExpectedId)
47     {
48         return _formatter.format("form-too-few-ids", form.getExtendedId(), new Integer JavaDoc(
49                 remainingCount), nextExpectedId);
50     }
51
52     static String JavaDoc encodingTypeContention(IComponent form, String JavaDoc establishedEncodingType,
53             String JavaDoc newEncodingType)
54     {
55         return _formatter.format(
56                 "encoding-type-contention",
57                 form.getExtendedId(),
58                 establishedEncodingType,
59                 newEncodingType);
60     }
61
62     static String JavaDoc fieldAlreadyPrerendered(IComponent field)
63     {
64         return _formatter.format("field-already-prerenderer", field);
65     }
66 }
Popular Tags