Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Server/src/org/litesoft/orsup/nonpublic/AbstractFinder.java

Diff revisions: vs.
  @@ -159,8 +159,7 @@
159 159 *
160 160 * @throws DBException - Exception regarding the OR layer
161 161 */
162 - @SuppressWarnings({"unchecked"})
163 - @Override
162 + @SuppressWarnings({"unchecked"}) @Override
164 163 public final <T extends PersistentObject> List<T> findSubset( Class<T> pPersistedObjectClass, WhereClause pSelectionWhereClause, OrderBy pOrderBy, long pOffset, int pLimit )
165 164 throws DBException
166 165 {
  @@ -193,8 +192,7 @@
193 192 *
194 193 * @throws DBException - Exception regarding the OR layer
195 194 */
196 - @SuppressWarnings({"unchecked"})
197 - @Override
195 + @SuppressWarnings({"unchecked"}) @Override
198 196 public final <T extends PersistentObject> List<T> findAll( Class<T> pPersistedObjectClass, WhereClause pSelectionWhereClause, OrderBy pOrderBy )
199 197 throws DBException
200 198 {
  @@ -271,8 +269,7 @@
271 269 * @throws UnsupportedOperationException - if the PO type does not have a "single" key
272 270 * @throws DBException - other Exception regarding the OR layer
273 271 */
274 - @SuppressWarnings({"unchecked"})
275 - @Override
272 + @SuppressWarnings({"unchecked"}) @Override
276 273 public final <T extends PersistentObject> List<T> findAllByKeys( Class<T> pPersistedObjectClass, Collection pKeys, OrderBy pOrderBy )
277 274 throws UnsupportedOperationException, DBException
278 275 {
  @@ -353,8 +350,7 @@
353 350 *
354 351 * @throws DBException - Exception regarding the OR layer
355 352 */
356 - @SuppressWarnings({"unchecked"})
357 - @Override
353 + @SuppressWarnings({"unchecked"}) @Override
358 354 public final <T extends PersistentObject> T findOne( Class<T> pPersistedObjectClass, WhereClause pSelectionWhereClause )
359 355 throws DBException
360 356 {
  @@ -391,8 +387,7 @@
391 387 *
392 388 * @throws DBException - Exception regarding the OR layer
393 389 */
394 - @SuppressWarnings({"unchecked"})
395 - @Override
390 + @SuppressWarnings({"unchecked"}) @Override
396 391 public final <T extends PersistentObject> T findOne( Class<T> pPersistedObjectClass, PersistentObjectUniqueKey pPersistentObjectUniqueKey )
397 392 throws DBException
398 393 {