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
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.aokeyhole.objects.factories.mementobean;

import org.litesoft.aokeyhole.objects.*;
import org.litesoft.aokeyhole.objects.attributes.*;
import org.litesoft.aokeyhole.objects.factories.*;
import org.litesoft.aokeyhole.objects.properties.*;

public class MementoBeanPropertyMetaDataDefinitionAccessor extends PropertyMetaDataDefinitionAccessorImpl {
    public static final PropertyMetaDataDefinitionAccessor INSTANCE = new MementoBeanPropertyMetaDataDefinitionAccessor();

    private MementoBeanPropertyMetaDataDefinitionAccessor() {
        super( "MementoBean", //
               new ObjectSet( false, 0, false, "Bean" ), //
               new UiCRUDpSet( A_String.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullEmpties.INSTANCE ), //
               new UiCRUDpSet( A_Integer.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullZeros.INSTANCE ), //
               new UiCRUDpSet( A_Long.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullZeros.INSTANCE ), //
               new UiCRUDpSet( A_Float.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullZeros.INSTANCE ), //
               new UiCRUDpSet( A_Double.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullZeros.INSTANCE ), //
               new UiCRUDpSet( A_Boolean.TYPE, //
                               PMD_Repeating.INSTANCE, //
                               PMD_NullFalses.INSTANCE ), //
               new UiCRUDpSet( A_Timestamp.TYPE, //
                               PMD_Repeating.INSTANCE ), //
               new UiCRUDpSet( A_Date.TYPE, //
                               PMD_Repeating.INSTANCE ), //
               new UiCRUDpSet( A_Time.TYPE, //
                               PMD_Repeating.INSTANCE ), //
//               new UiCRUDpSet( A_ArrayOptions.TYPE, //
//                               PMD_Repeating.INSTANCE, //
//                               PMD_FullyQualifiedStringArrayPath.INSTANCE ), //
//               new UiCRUDpSet( A_ValidOptions.TYPE, //
//                               PMD_Repeating.INSTANCE ), //
               new ToOneSetNoBackRef( PMD_NullEmpties.INSTANCE ), //
               new ToManySetNoBackRef( PMD_NullEmpties.INSTANCE ) );
    }
}

Commits for litesoft/trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/factories/mementobean/MementoBeanPropertyMetaDataDefinitionAccessor.java

Diff revisions: vs.
Revision Author Commited Message
950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

830 Diff Diff GeorgeS picture GeorgeS Fri 31 Aug, 2012 18:10:19 +0000
828 Diff Diff GeorgeS picture GeorgeS Wed 29 Aug, 2012 00:53:01 +0000
820 Diff Diff GeorgeS picture GeorgeS Sat 18 Aug, 2012 22:41:35 +0000

!

817 Diff Diff GeorgeS picture GeorgeS Sat 18 Aug, 2012 17:57:19 +0000
816 Diff Diff GeorgeS picture GeorgeS Sat 18 Aug, 2012 17:56:47 +0000
788 Diff Diff GeorgeS picture GeorgeS Sun 05 Aug, 2012 22:58:50 +0000

!

785 GeorgeS picture GeorgeS Sun 22 Jul, 2012 03:27:33 +0000

!