01: package org.tigris.scarab.util.build.l10nchecker.issues;
02:
03: import org.tigris.scarab.util.build.l10nchecker.L10nIssue;
04:
05: /* ================================================================
06: * Copyright (c) 2005 CollabNet. All rights reserved.
07: *
08: * Redistribution and use in source and binary forms, with or without
09: * modification, are permitted provided that the following conditions are
10: * met:
11: *
12: * 1. Redistributions of source code must retain the above copyright
13: * notice, this list of conditions and the following disclaimer.
14: *
15: * 2. Redistributions in binary form must reproduce the above copyright
16: * notice, this list of conditions and the following disclaimer in the
17: * documentation and/or other materials provided with the distribution.
18: *
19: * 3. The end-user documentation included with the redistribution, if
20: * any, must include the following acknowlegement: "This product includes
21: * software developed by Collab.Net <http://www.Collab.Net/>."
22: * Alternately, this acknowlegement may appear in the software itself, if
23: * and wherever such third-party acknowlegements normally appear.
24: *
25: * 4. The hosted project names must not be used to endorse or promote
26: * products derived from this software without prior written
27: * permission. For written permission, please contact info@collab.net.
28: *
29: * 5. Products derived from this software may not use the "Tigris" or
30: * "Scarab" names nor may "Tigris" or "Scarab" appear in their names without
31: * prior written permission of Collab.Net.
32: *
33: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
34: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
35: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36: * IN NO EVENT SHALL COLLAB.NET OR ITS CONTRIBUTORS BE LIABLE FOR ANY
37: * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
39: * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
40: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
41: * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
42: * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
43: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44: *
45: * ====================================================================
46: *
47: * This software consists of voluntary contributions made by many
48: * individuals on behalf of Collab.Net.
49: */
50:
51: /**
52: * This error is produced in case the number of arguments is different in the
53: * reference and the localisation.
54: *
55: *<p>Example:
56: *
57: *<ul><li>Reference:
58: *<pre>
59: * a={0} should be {1}
60: *</pre>
61: *<li>Localisation:
62: *<pre>
63: * a={0} sollte {1} sein, Standart ist {2}
64: *</pre>
65: *</ul>
66: */
67: public class DifferentAttributeCountIssue extends L10nIssue {
68:
69: private String key;
70:
71: private Integer attrCount;
72: private Integer origAttrCount;
73:
74: /**
75: * Construct this issue
76: */
77: public DifferentAttributeCountIssue(String key, int attrCount,
78: int origAttrCount) {
79: this .key = key;
80: this .attrCount = new Integer(attrCount);
81: this .origAttrCount = new Integer(origAttrCount);
82: }
83:
84: /* (non-Javadoc)
85: * @see org.tigris.scarab.util.build.l10nchecker.L10nIssue#getMessageTemplate()
86: */
87: public String getMessageTemplate() {
88: return "Key {0} contains different number of attributes ({1}) than reference ({2})";
89: }
90:
91: /* (non-Javadoc)
92: * @see org.tigris.scarab.util.build.l10nchecker.L10nIssue#getParameters()
93: */
94: public Object[] getParameters() {
95: return new Object[] { key, attrCount, origAttrCount };
96: }
97: }
|