#957 - Javadoc update only

This commit is contained in:
Rob Bygrave
2017-01-27 00:36:25 +13:00
parent 085fdaf177
commit 0260a73cb6
12 changed files with 44 additions and 7 deletions
@@ -0,0 +1,4 @@
/**
* Transactional annotations.
*/
package io.ebean.annotation;
@@ -22,16 +22,9 @@ package io.ebean.config;
* to implement this interface rather than let Ebean automatically support that
* type via reflection.
* </p>
* <p>
* If you want to support a Compound Type rather than a Scalar Type refer to
* {@link CompoundType}.
* </p>
*
* @param <B> The value object type.
* @param <S> The scalar object type that is used to persist the value object.
* @author rbygrave
* @see CompoundType
* @see CompoundTypeProperty
*/
public interface ScalarTypeConverter<B, S> {
@@ -0,0 +1,4 @@
/**
* DB2 specific support.
*/
package io.ebean.config.dbplatform.db2;
@@ -0,0 +1,4 @@
/**
* H2 specific support.
*/
package io.ebean.config.dbplatform.h2;
@@ -0,0 +1,4 @@
/**
* Hsqldb specific support.
*/
package io.ebean.config.dbplatform.hsqldb;
@@ -0,0 +1,4 @@
/**
* MySql specific support.
*/
package io.ebean.config.dbplatform.mysql;
@@ -0,0 +1,4 @@
/**
* Oracle specific support.
*/
package io.ebean.config.dbplatform.oracle;
@@ -0,0 +1,4 @@
/**
* Postgres specific support.
*/
package io.ebean.config.dbplatform.postgres;
@@ -0,0 +1,4 @@
/**
* SqlAnywhere specific support.
*/
package io.ebean.config.dbplatform.sqlanywhere;
@@ -0,0 +1,4 @@
/**
* Sqlite specific support.
*/
package io.ebean.config.dbplatform.sqlite;
@@ -0,0 +1,4 @@
/**
* SqlServer specific support.
*/
package io.ebean.config.dbplatform.sqlserver;
@@ -0,0 +1,4 @@
/**
* Utility and helper classes.
*/
package io.ebean.util;