Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 828 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/factories/mementobean/MementoBeanPropertyMetaDataDefinitionAccessor.java

Diff revisions: vs.
  @@ -13,37 +13,37 @@
13 13 private MementoBeanPropertyMetaDataDefinitionAccessor()
14 14 {
15 15 super( "MementoBean", //
16 - new ObjectSet( 0, false, "Bean" ), //
16 + new ObjectSet( false, 0, false, "Bean" ), //
17 17 new UiCRUDpSet( A_String.TYPE, //
18 - new ASet( PMD_Repeating.INSTANCE, //
19 - PMD_NullEmpties.INSTANCE ) ), //
18 + PMD_Repeating.INSTANCE, //
19 + PMD_NullEmpties.INSTANCE ), //
20 20 new UiCRUDpSet( A_Integer.TYPE, //
21 - new ASet( PMD_Repeating.INSTANCE, //
22 - PMD_NullZeros.INSTANCE ) ), //
21 + PMD_Repeating.INSTANCE, //
22 + PMD_NullZeros.INSTANCE ), //
23 23 new UiCRUDpSet( A_Long.TYPE, //
24 - new ASet( PMD_Repeating.INSTANCE, //
25 - PMD_NullZeros.INSTANCE ) ), //
24 + PMD_Repeating.INSTANCE, //
25 + PMD_NullZeros.INSTANCE ), //
26 26 new UiCRUDpSet( A_Float.TYPE, //
27 - new ASet( PMD_Repeating.INSTANCE, //
28 - PMD_NullZeros.INSTANCE ) ), //
27 + PMD_Repeating.INSTANCE, //
28 + PMD_NullZeros.INSTANCE ), //
29 29 new UiCRUDpSet( A_Double.TYPE, //
30 - new ASet( PMD_Repeating.INSTANCE, //
31 - PMD_NullZeros.INSTANCE ) ), //
30 + PMD_Repeating.INSTANCE, //
31 + PMD_NullZeros.INSTANCE ), //
32 32 new UiCRUDpSet( A_Boolean.TYPE, //
33 - new ASet( PMD_Repeating.INSTANCE, //
34 - PMD_NullFalses.INSTANCE ) ), //
33 + PMD_Repeating.INSTANCE, //
34 + PMD_NullFalses.INSTANCE ), //
35 35 new UiCRUDpSet( A_Timestamp.TYPE, //
36 - new ASet( PMD_Repeating.INSTANCE ) ), //
36 + PMD_Repeating.INSTANCE ), //
37 37 new UiCRUDpSet( A_Date.TYPE, //
38 - new ASet( PMD_Repeating.INSTANCE ) ), //
38 + PMD_Repeating.INSTANCE ), //
39 39 new UiCRUDpSet( A_Time.TYPE, //
40 - new ASet( PMD_Repeating.INSTANCE ) ), //
40 + PMD_Repeating.INSTANCE ), //
41 41 new UiCRUDpSet( A_ArrayOptions.TYPE, //
42 - new ASet( PMD_Repeating.INSTANCE, //
43 - PMD_FullyQualifiedStringArrayPath.INSTANCE ) ), //
42 + PMD_Repeating.INSTANCE, //
43 + PMD_FullyQualifiedStringArrayPath.INSTANCE ), //
44 44 new UiCRUDpSet( A_ValidOptions.TYPE, //
45 - new ASet( PMD_Repeating.INSTANCE ) ), //
46 - new ToOneSet( new ASet( PMD_NullEmpties.INSTANCE ) ), //
47 - new ToManySet( new ASet( PMD_NullEmpties.INSTANCE ) ) );
45 + PMD_Repeating.INSTANCE ), //
46 + new ToOneSetNoBackRef( PMD_NullEmpties.INSTANCE ), //
47 + new ToManySetNoBackRef( PMD_NullEmpties.INSTANCE ) );
48 48 }
49 49 }