package org.theonefx.wcframework.ioc; public interface PropertyValues { PropertyValue[] getPropertyValues(); PropertyValue getPropertyValue(String propertyName); boolean contains(String propertyName); boolean isEmpty(); PropertyValues addPropertyValue(PropertyValue pv); public void addPropertyValue(String propertyName, Object propertyValue); }