01: package org.apache.velocity.app.event.implement;
02:
03: /*
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "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 470256 2006-11-02 07:20:36Z wglass $
30: */
31: public class InvalidReferenceInfo extends Info {
32: private String invalidReference;
33:
34: public InvalidReferenceInfo(String invalidReference, Info info) {
35: super (info.getTemplateName(), info.getLine(), info.getColumn());
36: this .invalidReference = invalidReference;
37: }
38:
39: /**
40: * Get the specific invalid reference string.
41: * @return the invalid reference string
42: */
43: public String getInvalidReference() {
44: return invalidReference;
45: }
46:
47: /**
48: * Formats a textual representation of this object as <code>SOURCE
49: * [line X, column Y]: invalidReference</code>.
50: *
51: * @return String representing this object.
52: */
53: public String toString() {
54: return getTemplateName() + " [line " + getLine() + ", column "
55: + getColumn() + "]: " + invalidReference;
56: }
57: }
|