KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > mapping > MetaAttributable


1 package org.hibernate.mapping;
2
3 /**
4  * Common interface for things that can handle meta attributes.
5  *
6  * @since 3.0.1
7  */

8 public interface MetaAttributable {
9
10     public java.util.Map JavaDoc getMetaAttributes();
11
12     public void setMetaAttributes(java.util.Map JavaDoc metas);
13         
14     public MetaAttribute getMetaAttribute(String JavaDoc name);
15
16 }
17
Popular Tags