add missing @since annotations, fix javadoc comment block syntax
This commit is contained in:
parent
2d66ce8b2d
commit
0f8c26c7a1
|
@ -233,7 +233,7 @@ public final class Hibernate {
|
||||||
: list.get(key);
|
: list.get(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Remove the value associated with the given key by the given persistent
|
* Remove the value associated with the given key by the given persistent
|
||||||
* map, without fetching the state of the map from the database.
|
* map, without fetching the state of the map from the database.
|
||||||
*
|
*
|
||||||
|
@ -250,7 +250,7 @@ public final class Hibernate {
|
||||||
: map.remove( key );
|
: map.remove( key );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Remove the specified element of the given persistent set,
|
* Remove the specified element of the given persistent set,
|
||||||
* without fetching the state of the set from the database.
|
* without fetching the state of the set from the database.
|
||||||
*
|
*
|
||||||
|
@ -266,7 +266,7 @@ public final class Hibernate {
|
||||||
: set.remove( element );
|
: set.remove( element );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Remove the specified element of the given persistent list,
|
* Remove the specified element of the given persistent list,
|
||||||
* without fetching the state of the list from the database.
|
* without fetching the state of the list from the database.
|
||||||
*
|
*
|
||||||
|
|
|
@ -34,16 +34,22 @@ public enum OnDeleteAction {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prevents deletion of the parent by raising an error immediately.
|
* Prevents deletion of the parent by raising an error immediately.
|
||||||
|
*
|
||||||
|
* @since 6.2
|
||||||
*/
|
*/
|
||||||
RESTRICT,
|
RESTRICT,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the referencing foreign key to null.
|
* Set the referencing foreign key to null.
|
||||||
|
*
|
||||||
|
* @since 6.2
|
||||||
*/
|
*/
|
||||||
SET_NULL,
|
SET_NULL,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the referencing foreign key to its default value.
|
* Set the referencing foreign key to its default value.
|
||||||
|
*
|
||||||
|
* @since 6.2
|
||||||
*/
|
*/
|
||||||
SET_DEFAULT;
|
SET_DEFAULT;
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,10 @@ import org.hibernate.boot.Metadata;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Service delegate for handling schema truncation.
|
* Service delegate for handling schema truncation.
|
||||||
|
*
|
||||||
|
* @author Gavin King
|
||||||
|
*
|
||||||
|
* @since 6.2
|
||||||
*/
|
*/
|
||||||
@Incubating
|
@Incubating
|
||||||
public interface SchemaTruncator {
|
public interface SchemaTruncator {
|
||||||
|
|
Loading…
Reference in New Issue