1 package net.sf.msplice.property; 2 3 public interface IPropertySetter { 4 5 void setProperty(String propertyName, Object rootObject, Object value) throws PropertySetException; 6 7 }