package at.gv.egovernment.moa.spss.api.common; /** * Object encapsulating arbitrary content and optional descriptive meta * information. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface XMLDataObjectAssociation { /** * Gets descriptive meta information. * * @return The descriptive meta information. */ public MetaInfo getMetaInfo(); /** * Gets the actual content. * * @return The content of this association. */ public Content getContent(); }