1 16 package org.apache.commons.jexl.util.introspection; 17 18 28 public class Info { 29 30 private int line; 31 32 private int column; 33 34 private String templateName; 35 41 public Info(String tn, int l, int c) { 42 templateName = tn; 43 line = l; 44 column = c; 45 } 46 47 51 public String getTemplateName() { 52 return templateName; 53 } 54 55 59 public int getLine() { 60 return line; 61 } 62 63 67 public int getColumn() { 68 return column; 69 } 70 } 71 | Popular Tags |