mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#919 - io.ebean package initial
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package io.ebean.bean;
|
||||
|
||||
/**
|
||||
* Interface to define the addition of a bean to the underlying collection.
|
||||
* <p>
|
||||
* For maps this takes into account the map key. For List and Set this simply
|
||||
* adds the bean to the underlying list or set.
|
||||
* </p>
|
||||
*/
|
||||
public interface BeanCollectionAdd {
|
||||
|
||||
/**
|
||||
* Add a loaded bean to the collection.
|
||||
*/
|
||||
void addEntityBean(EntityBean bean);
|
||||
}
|
||||
Reference in New Issue
Block a user