1 package org.apache.velocity.util.introspection; 2 17 18 25 public class Info 26 { 27 private int line; 28 private int column; 29 private String templateName; 30 31 public Info(String tn, int l, int c) 32 { 33 templateName = tn; 34 line = l; 35 column = c; 36 } 37 38 private Info() 39 { 40 } 41 42 public String getTemplateName() 43 { 44 return templateName; 45 } 46 47 public int getLine() 48 { 49 return line; 50 } 51 52 public int getColumn() 53 { 54 return column; 55 } 56 } 57 | Popular Tags |