No effective change - Code cleanup,remove unnecessary public modifier on interfaces

This commit is contained in:
Robin Bygrave
2015-07-31 13:05:22 +12:00
parent 8a3d9edd34
commit efe4e69ed1
7 changed files with 50 additions and 50 deletions
@@ -19,7 +19,7 @@ public interface BeanCollectionHelp<T> {
/**
* Set the EbeanServer that owns the configuration.
*/
public void setLoader(BeanCollectionLoader loader);
void setLoader(BeanCollectionLoader loader);
/**
* Return the mechanism to add beans to the underlying collection.
@@ -27,41 +27,41 @@ public interface BeanCollectionHelp<T> {
* For Map's this needs to take the mapKey.
* </p>
*/
public BeanCollectionAdd getBeanCollectionAdd(Object bc, String mapKey);
BeanCollectionAdd getBeanCollectionAdd(Object bc, String mapKey);
/**
* Create an empty collection of the correct type without a parent bean.
*/
public BeanCollection<T> createEmptyNoParent();
BeanCollection<T> createEmptyNoParent();
/**
* Create an empty collection of the correct type.
*/
public BeanCollection<T> createEmpty(EntityBean bean);
BeanCollection<T> createEmpty(EntityBean bean);
/**
* Add a bean to the List Set or Map.
*/
public void add(BeanCollection<?> collection, EntityBean bean);
void add(BeanCollection<?> collection, EntityBean bean);
/**
* Create a lazy loading proxy for a List Set or Map.
*/
public BeanCollection<T> createReference(EntityBean parentBean);
BeanCollection<T> createReference(EntityBean parentBean);
/**
* Refresh the List Set or Map.
*/
public void refresh(EbeanServer server, Query<?> query, Transaction t, EntityBean parentBean);
void refresh(EbeanServer server, Query<?> query, Transaction t, EntityBean parentBean);
/**
* Apply the new refreshed BeanCollection to the appropriate property of the parent bean.
*/
public void refresh(BeanCollection<?> bc, EntityBean parentBean);
void refresh(BeanCollection<?> bc, EntityBean parentBean);
/**
* Write the collection out as json.
*/
public void jsonWrite(WriteJson ctx, String name, Object collection, boolean explicitInclude) throws IOException;
void jsonWrite(WriteJson ctx, String name, Object collection, boolean explicitInclude) throws IOException;
}