package vicazh.hyperpool; import java.util.*; /** * The group interface * * @author Victor Zhigunov * @version 0.4.0 */ public interface GroupMBean extends LineMBean { /** * Set the objects */ void setObjects(List<LineMBean> objects); /** * Get the objects */ List<LineMBean> getObjects(); }