/**
*
*/
package com.grendelscan.commons.http.dataHandling.containers;
import com.grendelscan.commons.http.dataHandling.data.Data;
import com.grendelscan.commons.http.dataHandling.data.MutableData;
import com.grendelscan.commons.http.dataHandling.references.DataReference;
/**
* @author david
*
*/
public interface ExpandableDataContainer<ReferenceType extends DataReference>
extends DataContainer<ReferenceType>, MutableData
{
public void addChild(ReferenceType reference, Data child);
public void addChild(Data child);
}