Package org.hibernate.mapping
Interface MetaAttributable
-
- All Known Implementing Classes:
Backref
,Component
,IndexBackref
,JoinedSubclass
,PersistentClass
,Property
,RootClass
,SingleTableSubclass
,Subclass
,SyntheticProperty
,UnionSubclass
public interface MetaAttributable
Common interface for things that can handle meta attributes.- Since:
- 3.0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetaAttribute
getMetaAttribute(String name)
Map<String,MetaAttribute>
getMetaAttributes()
void
setMetaAttributes(Map<String,MetaAttribute> metas)
-
-
-
Method Detail
-
getMetaAttributes
Map<String,MetaAttribute> getMetaAttributes()
-
setMetaAttributes
void setMetaAttributes(Map<String,MetaAttribute> metas)
-
getMetaAttribute
MetaAttribute getMetaAttribute(String name)
-
-