01: package org.hibernate.mapping;
02:
03: /**
04: * Common interface for things that can handle meta attributes.
05: *
06: * @since 3.0.1
07: */
08: public interface MetaAttributable {
09:
10: public java.util.Map getMetaAttributes();
11:
12: public void setMetaAttributes(java.util.Map metas);
13:
14: public MetaAttribute getMetaAttribute(String name);
15:
16: }
|