1 package org.objectweb.kilim.description; 2 3 import org.objectweb.kilim.KilimException; 4 5 8 public class TpSetter extends TpAccessor { 9 private BasicElement value; 10 11 19 public TpSetter(BasicElement aSupport, String aField, boolean jStatic, TemplateDescription aTemplate) throws KilimException { 20 super(aSupport, aField, jStatic, false, true, aTemplate); 21 } 22 23 27 public void setValue(BasicElement aValue) { 28 value = aValue; 29 } 30 31 35 public BasicElement getValue() { 36 return value; 37 } 38 39 42 public int getKind() { 43 return KILIM.SETTER; 44 } 45 } | Popular Tags |