View Javadoc

1   package net.sf.msplice.property;
2   
3   public interface IPropertyGetter {
4   	
5   	Object getProperty(String propertyName, Object rootObject) throws PropertyGetException;
6   
7   }