KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > markup > MarkupMessages


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.markup;
16
17 import java.util.List JavaDoc;
18
19 import org.apache.hivemind.impl.MessageFormatter;
20 import org.apache.tapestry.util.ContentType;
21
22 /**
23  * @author Howard M. Lewis Ship
24  * @since 4.0
25  */

26 class MarkupMessages
27 {
28     protected static MessageFormatter _formatter = new MessageFormatter(MarkupMessages.class,
29             "MarkupStrings");
30
31     static String JavaDoc tagNotOpen()
32     {
33         return _formatter.getMessage("tag-not-open");
34     }
35
36     static String JavaDoc elementNotOnStack(String JavaDoc name, List JavaDoc activeElementStack)
37     {
38         StringBuffer JavaDoc buffer = new StringBuffer JavaDoc();
39
40         int count = activeElementStack.size();
41
42         for (int i = 0; i < count; i++)
43         {
44             if (i > 0)
45                 buffer.append(", ");
46
47             buffer.append(activeElementStack.get(i));
48         }
49
50         return _formatter.format("element-not-on-stack", name, buffer.toString());
51     }
52
53     static String JavaDoc endWithEmptyStack()
54     {
55         return _formatter.getMessage("end-with-empty-stack");
56     }
57
58     static String JavaDoc noFilterMatch(ContentType contentType)
59     {
60         return _formatter.format("no-filter-match", contentType);
61     }
62
63     static String JavaDoc closeOnce()
64     {
65         return _formatter.getMessage("close-once");
66     }
67 }
Popular Tags