1 package org.apache.velocity.app.event.implement;
2
3 /*
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 */
21
22 import org.apache.velocity.util.introspection.Info;
23
24 /**
25 * Convenience class to use when reporting out invalid syntax
26 * with line, column, and template name.
27 *
28 * @author <a href="mailto:wglass@forio.com">Will Glass-Husain </a>
29 * @version $Id: InvalidReferenceInfo.java 685685 2008-08-13 21:43:27Z nbubna $
30 * @since 1.5
31 */
32 public class InvalidReferenceInfo extends Info
33 {
34 private String invalidReference;
35
36 public InvalidReferenceInfo(String invalidReference, Info info)
37 {
38 super(info.getTemplateName(),info.getLine(),info.getColumn());
39 this.invalidReference = invalidReference;
40 }
41
42 /**
43 * Get the specific invalid reference string.
44 * @return the invalid reference string
45 */
46 public String getInvalidReference()
47 {
48 return invalidReference;
49 }
50
51
52
53 /**
54 * Formats a textual representation of this object as <code>SOURCE
55 * [line X, column Y]: invalidReference</code>.
56 *
57 * @return String representing this object.
58 */
59 public String toString()
60 {
61 return getTemplateName() + " [line " + getLine() + ", column " +
62 getColumn() + "]: " + invalidReference;
63 }
64 }