1 package org.objectweb.kilim.description; 2 3 import org.objectweb.kilim.KilimException; 4 5 8 public class TpGetter extends TpAccessor { 9 private Object resultValue; 10 11 19 public TpGetter(BasicElement aSupport, String aField, boolean jsStatic, TemplateDescription aTemplate) throws KilimException { 20 super(aSupport, aField, jsStatic, true, false, aTemplate); 21 } 22 23 26 public int getKind() { 27 return KILIM.GETTER; 28 } 29 } 30 | Popular Tags |