Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/UiCRUDpSet.java

Diff revisions: vs.
  @@ -1,32 +1,26 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.aokeyhole.objects;
3 3
4 - public class UiCRUDpSet extends AttributeSet
5 - {
6 - protected UiCRUDpSet( AttributeSetBuilder pBuilder )
7 - {
4 + public class UiCRUDpSet extends AttributeSet {
5 + protected UiCRUDpSet( AttributeSetBuilder pBuilder ) {
8 6 super( pBuilder );
9 7 }
10 8
11 - public UiCRUDpSet( AttributeType pType, ASet pPersisted, ASet pVirtual )
12 - {
9 + public UiCRUDpSet( AttributeType pType, ASet pPersisted, ASet pVirtual ) {
13 10 this( new AttributeSetBuilder( pType ).persisted( pPersisted ).virtual( pVirtual ) );
14 11 }
15 12
16 - public UiCRUDpSet( AttributeType pType, PropertyMetaData... pPersistedPMDs )
17 - {
13 + public UiCRUDpSet( AttributeType pType, PropertyMetaData... pPersistedPMDs ) {
18 14 this( new AttributeSetBuilder( pType ).persisted( new ASet( pPersistedPMDs ) ) );
19 15 }
20 16
21 17 @Override
22 - public boolean isUiCreatable()
23 - {
18 + public boolean isUiCreatable() {
24 19 return true;
25 20 }
26 21
27 22 @Override
28 - public boolean isUiDeleteable()
29 - {
23 + public boolean isUiDeleteable() {
30 24 return true;
31 25 }
32 26 }