Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.or;

import java.sql.*;
import java.util.*;

import org.litesoft.bo.attributes.*;
import org.litesoft.core.util.*;
import org.litesoft.orsup.base.*;
import org.litesoft.orsup.lazyload.*;
import org.litesoft.orsup.nonpublic.*;
import org.litesoft.orsup.otherattributeaccessors.*;
import org.litesoft.orsup.selection.*;
import org.litesoft.orsup.transact.*;

public abstract class DBInvoicePO extends PersistentObjectImpl<DBInvoice>
{
    private static final ConstructionControl CONSTRUCTION_CONTROL = new ConstructionControl();

    public static SimpleFromIdentifier from()
    {
        return DBInvoiceMetaData.INSTANCE;
    }

    protected DBInvoicePO( Transaction pTransaction ) // Only used for New
    {
        super( DBInvoiceMetaData.INSTANCE, pTransaction );
        mID = getNextSequenceNumber( getClass() );
        registerWithTransaction();
    }

    protected DBInvoicePO( ConstructionControl pConstructionControl )
    {
        super( DBInvoiceMetaData.INSTANCE, CONSTRUCTION_CONTROL, pConstructionControl );
    }

    public static final AttributeAccessorSCD CD_RecordVersion = new AttributeAccessor_RecordVersion();

    protected final RecordVersionHelper mRecordVersion = new RecordVersionHelper();

    public Long getRecordVersion()
    {
        return mRecordVersion.getRecordVersion();
    }

    private static class AttributeAccessor_RecordVersion extends AttributeAccessorSCD_RecordVersion<DBInvoice>
    {
        public AttributeAccessor_RecordVersion()
        {
            super( "RecordVersion", "RecordVersion" );
        }

        protected RecordVersionHelper getRecordVersionHelper( DBInvoice pPO )
        {
            return pPO.mRecordVersion;
        }
    }

    public static final AttributeAccessorSCD CD_LastModified = new AttributeAccessor_LastModified();

    private Timestamp mLastModified = null;

    public Timestamp getLastModified()
    {
        return mLastModified;
    }

    protected void LLsetLastModified( Timestamp pLastModified )
    {
        verifyMutability( CD_LastModified, mLastModified, pLastModified );
        mLastModified = pLastModified;
    }

    private static class AttributeAccessor_LastModified extends AttributeAccessorSCDsimplePersistedSysSetOnly<DBInvoice> implements NonImportableFeature
    {
        public AttributeAccessor_LastModified()
        {
            super( "LastModified", "LastModified", true, _SimpleTimestamp );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getLastModified();
        }

        public void db_setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.LLsetLastModified( to_Timestamp( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_Created = new AttributeAccessor_Created();

    private Timestamp mCreated = null;

    public Timestamp getCreated()
    {
        return mCreated;
    }

    protected void LLsetCreated( Timestamp pCreated )
    {
        verifyMutability( CD_Created, mCreated, pCreated );
        mCreated = pCreated;
    }

    private static class AttributeAccessor_Created extends AttributeAccessorSCDsimplePersistedSysSetOnly<DBInvoice> implements NonImportableFeature
    {
        public AttributeAccessor_Created()
        {
            super( "Created", "Created", true, _SimpleTimestamp );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getCreated();
        }

        public void db_setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.LLsetCreated( to_Timestamp( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_ID = new AttributeAccessor_ID();

    private Long mID = null;

    public Long getID()
    {
        return mID;
    }

    protected void LLsetID( Long pID )
    {
        verifyMutability( CD_ID, mID, pID );
        mID = pID;
    }

    private static class AttributeAccessor_ID extends AttributeAccessorSCDsimplePersistedReadOnly<DBInvoice> implements NonImportableFeature
    {
        public AttributeAccessor_ID()
        {
            super( "ID", "id", true, _Long );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getID();
        }

        public void db_setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.LLsetID( to_Long( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_Number = new AttributeAccessor_Number();

    private String mNumber;

    public String getNumber()
    {
        return mNumber;
    }

    public void setNumber( String pNumber )
    {
        verifyMutability( CD_Number, mNumber, pNumber );
        mNumber = pNumber;
    }

    private static class AttributeAccessor_Number extends AttributeAccessorSCDsimplePersistedRegular<DBInvoice>
    {
        public AttributeAccessor_Number()
        {
            super( "Number", "Number", false, _String.with( MaxLength.of( 255 ), //
                                                            UiHint.RightAligned ) );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getNumber();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setNumber( to_String( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_Paid = new AttributeAccessor_Paid();

    private boolean mPaid;

    public boolean getPaid()
    {
        return mPaid;
    }

    public void setPaid( boolean pPaid )
    {
        verifyMutability( CD_Paid, mPaid, pPaid );
        mPaid = pPaid;
    }

    private static class AttributeAccessor_Paid extends AttributeAccessorSCDsimplePersistedRegular<DBInvoice>
    {
        public AttributeAccessor_Paid()
        {
            super( "Paid", "Paid", false, _Primitive_boolean.with( BooleanDisplayOptions.of( "Paid/Pending" ) ) );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getPaid();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setPaid( to_boolean( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_Company = new AttributeAccessor_Company();

    private String mCompany;

    public String getCompany()
    {
        return mCompany;
    }

    public void setCompany( String pCompany )
    {
        verifyMutability( CD_Company, mCompany, pCompany );
        mCompany = pCompany;
    }

    private static class AttributeAccessor_Company extends AttributeAccessorSCDsimplePersistedRegular<DBInvoice>
    {
        public AttributeAccessor_Company()
        {
            super( "Company", "Company", false, _String.with( MaxLength.of( 255 ) ) );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getCompany();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setCompany( to_String( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_DateOrdered = new AttributeAccessor_DateOrdered();

    private Timestamp mDateOrdered = null;

    public Timestamp getDateOrdered()
    {
        return mDateOrdered;
    }

    public void setDateOrdered( Timestamp pDateOrdered )
    {
        verifyMutability( CD_DateOrdered, mDateOrdered, pDateOrdered );
        mDateOrdered = pDateOrdered;
    }

    private static class AttributeAccessor_DateOrdered extends AttributeAccessorSCDsimplePersistedRegular<DBInvoice>
    {
        public AttributeAccessor_DateOrdered()
        {
            super( "DateOrdered", "dateOrdered", false, _SimpleTimestamp );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getDateOrdered();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setDateOrdered( to_Timestamp( pValue ) );
        }
    }

    public static final AttributeAccessorSCD CD_ContactedAndResolved = new AttributeAccessor_ContactedAndResolved();

    private Boolean mContactedAndResolved;

    public Boolean getContactedAndResolved()
    {
        return mContactedAndResolved;
    }

    public void setContactedAndResolved( Boolean pContactedAndResolved )
    {
        verifyMutability( CD_ContactedAndResolved, mContactedAndResolved, pContactedAndResolved );
        mContactedAndResolved = pContactedAndResolved;
    }

    private static class AttributeAccessor_ContactedAndResolved extends AttributeAccessorSCDsimplePersistedRegular<DBInvoice>
    {
        public AttributeAccessor_ContactedAndResolved()
        {
            super( "ContactedAndResolved", "ContactedAndResolved", false, _Boolean );
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getContactedAndResolved();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setContactedAndResolved( to_Boolean( pValue ) );
        }
    }

    public static final AttributeAccessorSCDtoManyRegular<DBInvoice, DBLineItem> CD_DBLineItemSetForInvoice = new AttributeAccessor_DBLineItemSetForInvoice();

    protected LazyLoadToManyRegular<DBInvoice, DBLineItem> mDBLineItemSetForInvoice = new LazyLoadToManyRegular<DBInvoice, DBLineItem>( (DBInvoice) this, CD_DBLineItemSetForInvoice );

    public List<DBLineItem> getDBLineItemSetForInvoice()
    {
        return processLazyLoadAccess( mDBLineItemSetForInvoice );
    }

    public void setDBLineItemSetForInvoice( List<DBLineItem> pDBLineItemSetForInvoice )
    {
        processLazyLoadMutation( mDBLineItemSetForInvoice, pDBLineItemSetForInvoice );
    }

    public void addDBLineItemSetForInvoice( DBLineItem pDBLineItem )
    {
        processLazyLoadMutationAdd( mDBLineItemSetForInvoice, pDBLineItem );
    }

    public void removeDBLineItemSetForInvoice( DBLineItem pDBLineItem )
    {
        processLazyLoadMutationRemove( mDBLineItemSetForInvoice, pDBLineItem );
    }

    private static class AttributeAccessor_DBLineItemSetForInvoice extends AttributeAccessorSCDtoManyRegular<DBInvoice, DBLineItem>
    {
        public AttributeAccessor_DBLineItemSetForInvoice()
        {
            super( "DBLineItemSetForInvoice", "ID", DBLineItem.class, "Invoice", null, Mutability.RW, false, true );
        }

        public LazyLoadToManyRegular<DBInvoice, DBLineItem> getValueHolder( DBInvoice pPO )
        {
            return pPO.mDBLineItemSetForInvoice;
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getDBLineItemSetForInvoice();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setDBLineItemSetForInvoice( to_POs( pPO, DBLineItem.class, pValue ) );
        }

        public void addValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.addDBLineItemSetForInvoice( to_PO( pPO, DBLineItem.class, pValue ) );
        }

        public void removeValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.removeDBLineItemSetForInvoice( to_PO( pPO, DBLineItem.class, pValue ) );
        }
    }

    public static final AttributeAccessorSCDtoManyRegular<DBInvoice, DBTag> CD_DBTagSetForInvoice = new AttributeAccessor_DBTagSetForInvoice();

    protected LazyLoadToManyRegular<DBInvoice, DBTag> mDBTagSetForInvoice = new LazyLoadToManyRegular<DBInvoice, DBTag>( (DBInvoice) this, CD_DBTagSetForInvoice );

    public List<DBTag> getDBTagSetForInvoice()
    {
        return processLazyLoadAccess( mDBTagSetForInvoice );
    }

    public void setDBTagSetForInvoice( List<DBTag> pDBTagSetForInvoice )
    {
        processLazyLoadMutation( mDBTagSetForInvoice, pDBTagSetForInvoice );
    }

    public void addDBTagSetForInvoice( DBTag pDBTag )
    {
        processLazyLoadMutationAdd( mDBTagSetForInvoice, pDBTag );
    }

    public void removeDBTagSetForInvoice( DBTag pDBTag )
    {
        processLazyLoadMutationRemove( mDBTagSetForInvoice, pDBTag );
    }

    private static class AttributeAccessor_DBTagSetForInvoice extends AttributeAccessorSCDtoManyRegular<DBInvoice, DBTag>
    {
        public AttributeAccessor_DBTagSetForInvoice()
        {
            super( "DBTagSetForInvoice", "ID", DBTag.class, "Invoice", null, Mutability.RW, false, true );
        }

        public LazyLoadToManyRegular<DBInvoice, DBTag> getValueHolder( DBInvoice pPO )
        {
            return pPO.mDBTagSetForInvoice;
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getDBTagSetForInvoice();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setDBTagSetForInvoice( to_POs( pPO, DBTag.class, pValue ) );
        }

        public void addValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.addDBTagSetForInvoice( to_PO( pPO, DBTag.class, pValue ) );
        }

        public void removeValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.removeDBTagSetForInvoice( to_PO( pPO, DBTag.class, pValue ) );
        }
    }

    public static final AttributeAccessorSCDtoManyVariable<DBInvoice, DBNote> CD_Notes = new AttributeAccessor_Notes();

    protected LazyLoadToManyVariable<DBInvoice, DBNote> mNotes = new LazyLoadToManyVariable<DBInvoice, DBNote>( (DBInvoice) this, CD_Notes );

    public List<DBNote> getNotes()
    {
        return processLazyLoadAccess( mNotes );
    }

    public void setNotes( List<DBNote> pNotes )
    {
        processLazyLoadMutation( mNotes, pNotes );
    }

    public void addNotes( DBNote pDBNote )
    {
        processLazyLoadMutationAdd( mNotes, pDBNote );
    }

    public void removeNotes( DBNote pDBNote )
    {
        processLazyLoadMutationRemove( mNotes, pDBNote );
    }

    private static class AttributeAccessor_Notes extends AttributeAccessorSCDtoManyVariable<DBInvoice, DBNote>
    {
        public AttributeAccessor_Notes()
        {
            super( "Notes", DBNote.class, "Owner", null, true, false, Mutability.RW );
        }

        public LazyLoadToManyVariable<DBInvoice, DBNote> getValueHolder( DBInvoice pPO )
        {
            return pPO.mNotes;
        }

        public Object getValueOnPO( DBInvoice pPO )
        {
            return pPO.getNotes();
        }

        public void setValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.setNotes( to_POs( pPO, DBNote.class, pValue ) );
        }

        public void addValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.addNotes( to_PO( pPO, DBNote.class, pValue ) );
        }

        public void removeValueOnPO( DBInvoice pPO, Object pValue )
        {
            pPO.removeNotes( to_PO( pPO, DBNote.class, pValue ) );
        }
    }

    static class MyMetaData extends PersistentObjectImplMetaData<DBInvoice>
    {
        public static final String OBJECT_NAME = "DBInvoice";
        public static final String TABLE_NAME = "DBInvoice";

        MyMetaData()
        {
            super( OBJECT_NAME, TABLE_NAME, //
                   new AttributeAccessorKeySet( CD_ID ), //
                   CD_ID, //

                   CD_Company, //
                   CD_ContactedAndResolved, //
                   CD_Created, //
                   CD_DateOrdered, //
                   CD_LastModified, //
                   CD_Number, //
                   CD_Paid, //
                   CD_RecordVersion, //

                   CD_DBLineItemSetForInvoice, //
                   CD_Notes );
            setIndexes( new Index( "DBInvoiceIDX1", null, true, CD_Number ) );
        }

        public Class getPOclass()
        {
            return DBInvoice.class;
        }

        public DBInvoice createNew( Transaction pTransaction )
        {
            return new DBInvoice( pTransaction );
        }

        public DBInvoice createPOfromFinder()
        {
            return new DBInvoice( CONSTRUCTION_CONTROL );
        }

        public String getRecordVersionAttributeName()
        {
            return CD_RecordVersion.getName();
        }

        public String getCreationTimestampAttributeName()
        {
            return CD_Created.getName();
        }

        protected void setCreationTimestamp( DBInvoice pPersistentObject, Timestamp pTransactionTimeStamp )
        {
            pPersistentObject.LLsetCreated( pTransactionTimeStamp );
        }

        public String getTransactionTimestampAttributeName()
        {
            return CD_LastModified.getName();
        }

        protected void setTransactionTimestamp( DBInvoice pPersistentObject, Timestamp pTransactionTimeStamp )
        {
            pPersistentObject.LLsetLastModified( pTransactionTimeStamp );
        }

        public String getDisplayValueFormat()
        {
            return "${Number}";
        }
    }
}

Commits for litesoft/trunk/Java/core/Server/tests/org/litesoft/or/DBInvoicePO.java

Diff revisions: vs.
Revision Author Commited Message
947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

151 Diff Diff GeorgeS picture GeorgeS Thu 17 Mar, 2011 04:16:22 +0000
49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

21 Diff Diff GeorgeS picture GeorgeS Tue 23 Feb, 2010 21:11:25 +0000
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000