Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 24 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/filters/POFWCfactory.java

Diff revisions: vs.
  @@ -281,6 +281,7 @@
281 281 super( WhereClauseType.NOT, pMD, pFilter );
282 282 }
283 283
284 + @Override
284 285 public boolean selects( PersistentObject pPO )
285 286 throws DBException
286 287 {
  @@ -295,6 +296,7 @@
295 296 super( WhereClauseType.OR, pMD, pFilters );
296 297 }
297 298
299 + @Override
298 300 public boolean selects( PersistentObject pPO )
299 301 throws DBException
300 302 {
  @@ -316,6 +318,7 @@
316 318 super( WhereClauseType.AND, pMD, pFilters );
317 319 }
318 320
321 + @Override
319 322 public boolean selects( PersistentObject pPO )
320 323 throws DBException
321 324 {
  @@ -337,6 +340,7 @@
337 340 super( WhereClauseType.IS_NULL, pMD, pColumnDefinition );
338 341 }
339 342
343 + @Override
340 344 public boolean selects( PersistentObject pPO )
341 345 throws DBException
342 346 {
  @@ -351,6 +355,7 @@
351 355 super( WhereClauseType.EQUALS, pMD, pColumnDefinition, pValue );
352 356 }
353 357
358 + @Override
354 359 public boolean selects( PersistentObject pPO )
355 360 throws DBException
356 361 {
  @@ -365,6 +370,7 @@
365 370 super( WhereClauseType.LESSTHAN, pMD, pColumnDefinition, pValue );
366 371 }
367 372
373 + @Override
368 374 public boolean selects( PersistentObject pPO )
369 375 throws DBException
370 376 {
  @@ -381,6 +387,7 @@
381 387 super( WhereClauseType.GREATERTHAN, pMD, pColumnDefinition, pValue );
382 388 }
383 389
390 + @Override
384 391 public boolean selects( PersistentObject pPO )
385 392 throws DBException
386 393 {
  @@ -397,6 +404,7 @@
397 404 super( WhereClauseType.BETWEEN, pMD, pColumnDefinition, pLeftValue, pRightValue );
398 405 }
399 406
407 + @Override
400 408 public boolean selects( PersistentObject pPO )
401 409 throws DBException
402 410 {
  @@ -406,6 +414,7 @@
406 414 (CompareSupport.compare( zPOValue, mRightValue ) <= 0);
407 415 }
408 416
417 + @Override
409 418 protected void toStringHelper( StringBuilder pSB )
410 419 {
411 420 WhereClauseColumnSupport.makeStringValue( pSB, mColumnDefinition, mLeftValue );
  @@ -423,6 +432,7 @@
423 432 super( WhereClauseType.IS_ANY_OF, pMD, pColumnDefinition, pValues );
424 433 }
425 434
435 + @Override
426 436 public boolean selects( PersistentObject pPO )
427 437 throws DBException
428 438 {
  @@ -448,6 +458,7 @@
448 458 super( WhereClauseType.CONTAINS, pMD, pColumnDefinition, pValue );
449 459 }
450 460
461 + @Override
451 462 public boolean selects( PersistentObject pPO )
452 463 throws DBException
453 464 {
  @@ -463,6 +474,7 @@
463 474 super( WhereClauseType.STARTS_WITH, pMD, pColumnDefinition, pValue );
464 475 }
465 476
477 + @Override
466 478 public boolean selects( PersistentObject pPO )
467 479 throws DBException
468 480 {
  @@ -478,6 +490,7 @@
478 490 super( WhereClauseType.ENDS_WITH, pMD, pColumnDefinition, pValue );
479 491 }
480 492
493 + @Override
481 494 public boolean selects( PersistentObject pPO )
482 495 throws DBException
483 496 {