Subversion Repository Public Repository

litesoft

Diff Revisions 430 vs 502 for /trunk/Java/DATT/src/org/litesoft/datt/server/pos/StoryGO.java

Diff revisions: vs.
  @@ -376,6 +376,43 @@
376 376 }
377 377 }
378 378
379 + public static final AttributeAccessorSCD CD_PriorityLastChangedBy = new AttributeAccessor_PriorityLastChangedBy();
380 +
381 + private String mPriorityLastChangedBy;
382 +
383 + public String getPriorityLastChangedBy()
384 + {
385 + return mPriorityLastChangedBy;
386 + }
387 +
388 + public void setPriorityLastChangedBy( String pPriorityLastChangedBy )
389 + {
390 + verifyMutability( CD_PriorityLastChangedBy, mPriorityLastChangedBy, pPriorityLastChangedBy );
391 + mPriorityLastChangedBy = pPriorityLastChangedBy;
392 + }
393 +
394 + private static class AttributeAccessor_PriorityLastChangedBy
395 + extends AttributeAccessorSCDsimplePersistedRegular<Story>
396 + {
397 + public AttributeAccessor_PriorityLastChangedBy()
398 + {
399 + super( "PriorityLastChangedBy", "PriorityLastChangedBy", false, _String.with( MaxLength.of( 40 ), //
400 + DisplayLength.of( 20 ) ) );
401 + }
402 +
403 + @Override
404 + public Object getValueOnPO( Story pPO )
405 + {
406 + return pPO.getPriorityLastChangedBy();
407 + }
408 +
409 + @Override
410 + public void setValueOnPO( Story pPO, Object pValue )
411 + {
412 + pPO.setPriorityLastChangedBy( to_String( pValue ) );
413 + }
414 + }
415 +
379 416 public static final AttributeAccessorSCDtoOneRegular<Story,RestrictedResource> CD_RestrictedResource = new AttributeAccessor_RestrictedResource();
380 417
381 418 protected org.litesoft.orsup.lazyload.LazyLoadToOneRegular<Story,RestrictedResource> mRestrictedResource = //
  @@ -622,28 +659,29 @@
622 659 {
623 660 super( OBJECT_NAME, TABLE_NAME, new AttributeAccessorKeySet( CD_ID ), //
624 661
625 - CD_RecordVersion, /* ....... */
662 + CD_RecordVersion, /* .......... */
626 663
627 - CD_ID, /* .................. */
664 + CD_ID, /* ..................... */
628 665
629 666 // Regular
630 - CD_CreatorFullName, /* ..... */
631 - CD_Description, /* ......... */
632 - CD_IsDone, /* .............. Required */
633 - CD_Name, /* ................ Required */
634 - CD_Priority, /* ............ Required */
667 + CD_CreatorFullName, /* ........ */
668 + CD_Description, /* ............ */
669 + CD_IsDone, /* ................. Required */
670 + CD_Name, /* ................... Required */
671 + CD_Priority, /* ............... Required */
672 + CD_PriorityLastChangedBy, /* .. */
635 673
636 674 // Virtual
637 - CD_Changes, /* ............. */
675 + CD_Changes, /* ................ */
638 676
639 677 // ToOne
640 - CD_Creator, /* ............. Required */
641 - CD_RestrictedResource, /* .. Required */
642 - CD_StoryTemplate, /* ....... */
678 + CD_Creator, /* ................ Required */
679 + CD_RestrictedResource, /* ..... Required */
680 + CD_StoryTemplate, /* .......... */
643 681
644 682 // ToMany
645 - CD_Tasks, /* ............... */
646 - CD_Updates /* .............. */ );
683 + CD_Tasks, /* .................. */
684 + CD_Updates /* ................. */ );
647 685 setIndexes( new Index( "Story21AIDX3", null, false, CD_StoryTemplate ), //
648 686 new Index( "Story21AIDX2", null, false, CD_RestrictedResource ), //
649 687 new Index( "Story21AIDX1", null, false, CD_Creator ), //